#
whycq
2023-07-18 02d6a768149f3428583c30fa7caa1ce446d53291
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.zy.asrs.mapper;
 
import com.baomidou.mybatisplus.mapper.BaseMapper;
import com.zy.asrs.entity.LocNormal;
import com.zy.asrs.entity.LocNormalReport;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
import org.springframework.stereotype.Repository;
 
import java.math.BigDecimal;
import java.util.Date;
import java.util.List;
 
@Mapper
@Repository
public interface LocNormalReportMapper extends BaseMapper<LocNormalReport> {
 
}