shiyunteng
2025-03-28 4ad9053cc576b74f74985f22fa5af25cca282a28
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.by4cloud.platformx.device.service;
 
import com.by4cloud.platformx.device.entity.Contract;
import com.github.yulichang.extension.mapping.base.MPJDeepService;
 
import java.util.List;
 
public interface ContractService extends MPJDeepService<Contract> {
    Boolean saveDeep(Contract contract);
 
    Boolean updateDeep(Contract contract);
 
    Boolean removeDeep(Long[] ids);
 
    Boolean removeChild(Long[] ids);
 
    Contract getDetailById(Long id);
 
    Boolean approved(Long id);
 
    List<Contract> getApprovedContractList();
}