| | |
| | | package com.zy.asrs.wms.asrs.mapper; |
| | | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.zy.asrs.wms.asrs.entity.PickSheetDetl; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.springframework.stereotype.Repository; |
| | | |
| | | @Mapper |
| | | @Repository |
| | | public interface ManPickSheetDetlMapper { |
| | | int deleteByPrimaryKey(Long id); |
| | | public interface ManPickSheetDetlMapper extends BaseMapper<PickSheetDetl> { |
| | | |
| | | int insert(PickSheetDetl record); |
| | | |
| | | int insertSelective(PickSheetDetl record); |
| | | |
| | | PickSheetDetl selectByPrimaryKey(Long id); |
| | | |
| | | int updateByPrimaryKeySelective(PickSheetDetl record); |
| | | |
| | | int updateByPrimaryKey(PickSheetDetl record); |
| | | } |