| | |
| | | |
| | | import com.zy.asrs.entity.ICMO; |
| | | import com.baomidou.mybatisplus.mapper.BaseMapper; |
| | | import com.zy.kingdee.entity.IcmoDTO; |
| | | import com.zy.kingdee.entity.Vendor; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.apache.ibatis.annotations.Param; |
| | | import org.springframework.stereotype.Repository; |
| | | |
| | | import java.util.List; |
| | | |
| | | @Mapper |
| | | @Repository |
| | | public interface ICMOMapper extends BaseMapper<ICMO> { |
| | | |
| | | List<IcmoDTO> getIcmoDTOList(@Param("main") IcmoDTO mainDTO); |
| | | |
| | | List<Vendor> getVendorList(Vendor vendor); |
| | | |
| | | int updateMaxNum(ICMO icmo3); |
| | | } |