| | |
| | | |
| | | import com.zy.ints.entity.WaitMatchkLog; |
| | | 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 WaitMatchkLogMapper extends BaseMapper<WaitMatchkLog> { |
| | | |
| | | @Insert("insert into ints_wait_matchk_log select * from ints_wait_matchk where bill_no=#{billNo} and locNo=#{locNo} and matNo=#{matNo}") |
| | | int save(@Param("billNo") String billNo, @Param("locNo") String locNo, @Param("matNo") String matNo); |
| | | } |