| | |
| | | * @return |
| | | */ |
| | | @Insert("insert into cust_wait_check(lgnum,ivnum,ivpos,lqnum,matnr,maktx,werks,lgtyp,lgpla, " |
| | | + " memo,modi_time) " |
| | | + " memo,modi_time,modi_user) " |
| | | + " values(#{lgnum},#{ivnum},#{ivpos},#{lqnum},#{matnr},#{maktx},#{werks},#{lgtyp},#{lgpla}, " |
| | | + " #{memo},getdate())") |
| | | + " #{memo},getdate(),#{modi_user})") |
| | | public int insertWaitCheck(WaitCheckBean waitCheck); |
| | | |
| | | //分页查询所有信息 |
| | |
| | | @Select("select * from cust_wait_check a left join bas_mat_code b on a.mat_no=b.mat_no " |
| | | + "where barcode=#{barcode} order by sheet_no,a.mat_no desc") |
| | | public List<WaitCheckBean> getApiWaitCheckList(@Param("barcode")String barcode); |
| | | |
| | | /** |
| | | * 查询信息 |
| | | * @param |
| | | * @return |
| | | */ |
| | | @Select("select * from cust_wait_check where lgpla=#{locNo}") |
| | | public WaitCheckBean getWaitCheckByLoc(@Param("locNo")String locNo); |
| | | } |