#
lsh
2024-06-21 c147a3dc2a56ab23b1cfeafef3de2867593f4206
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.zy.asrs.service;
 
import com.zy.asrs.entity.BasJarMast;
import com.baomidou.mybatisplus.service.IService;
 
import java.util.List;
 
public interface BasJarMastService extends IService<BasJarMast> {
 
    List<BasJarMast> getJarMastByJarId(Long jarId);
 
    BasJarMast getJarMastByJarIdMax(Long jarId);
 
    BasJarMast getJarMastByJarIdMin(Long jarId);
 
    Integer getJarMastByJarIdCount(Long jarId);
 
}