| | |
| | | @Repository |
| | | public interface WrkMastLogMapper extends BaseMapper<WrkMastLog> { |
| | | |
| | | @Insert("insert into asr_wrk_mast_log select * from asr_wrk_mast where wrk_no=#{workNo}") |
| | | @Insert("insert into asr_wrk_mast_log select *, id as log_id from asr_wrk_mast where wrk_no=#{workNo}") |
| | | int save(Integer workNo); |
| | | |
| | | /** |
| | | * 查询库存移动流水记录 |
| | | */ |
| | | List<InventoryFlowDto> inventoryFlowList(@Param("curr") Integer curr,@Param("limit") Integer limit, @Param("param") Map<String, Object> param); |
| | | List<InventoryFlowDto> inventoryFlowList(@Param("curr") Integer curr, @Param("limit") Integer limit, @Param("param") Map<String, Object> param); |
| | | |
| | | /** |
| | | * 统计库存移动流水记录数 |