自动化立体仓库 - WMS系统
#
luxiaotao1123
2021-11-19 66546c7df9a8ddf6ca6a36f4168fb25c568adb13
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.zy.ints.mapper;
 
import com.baomidou.mybatisplus.mapper.BaseMapper;
import com.zy.ints.entity.IoCompleteLog;
import org.apache.ibatis.annotations.Insert;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
import org.springframework.stereotype.Repository;
 
@Mapper
@Repository
public interface IoCompleteLogMapper extends BaseMapper<IoCompleteLog> {
 
//    @Insert("insert into ints_io_complete_log select * from ints_io_complete where bill_no=#{billNo} and seq_no=#{seqNo}")
//    int save(@Param("billNo") String billNo,@Param("seqNo") Integer seqNo);
 
    @Insert("insert into ints_io_complete_log select * from ints_io_complete where id=#{id}")
    int save(@Param("id") Long id);
 
}