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