#
野心家
2023-09-06 03fb3f8e5bea1e4f87cc3e2d68fd521dcf663458
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.zy.asrs.mapper;
 
import com.zy.asrs.entity.TestMast;
import com.baomidou.mybatisplus.mapper.BaseMapper;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
import org.springframework.stereotype.Repository;
 
import java.util.Date;
 
@Mapper
@Repository
public interface TestMastMapper extends BaseMapper<TestMast> {
    void insertPackQualified(@Param("now")Date now,@Param("Pack")String Pack);
    void insertUnPackQualified(@Param("now")Date now,@Param("Pack")String Pack);
}