| | |
| | | |
| | | import com.zy.ints.entity.IoCompleteLog; |
| | | import com.baomidou.mybatisplus.mapper.BaseMapper; |
| | | 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); |
| | | |
| | | } |