1
luxiaotao1123
2021-11-11 5283d9c3d37696824c6432fe993fadd5913cc1bf
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> {
 
}