1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
| package com.mes.damage.service;
|
| import com.baomidou.mybatisplus.extension.service.IService;
| import com.mes.damage.entity.Damage;
|
| import java.util.List;
|
| /**
| * <p>
| * 服务类
| * </p>
| *
| * @author wu
| * @since 2024-06-13
| */
| public interface DamageService extends IService<Damage> {
|
| List<Damage> selectDamage(String startTime, String endTime, int type, int status, String workingProcedure);
|
| void submitDamage(List<Damage> damageList);
|
| /**
| * 单个破损
| *
| * @param damage
| */
| void insertDamage(Damage damage);
|
| /**
| * 批量破损
| *
| * @param damageList
| */
| void batchInsertDamage(List<Damage> damageList);
| }
|
|