yangys
2024-09-04 04c57331cf84c8f606c2838dcb6fe5463fb9b68c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package com.qianwen.smartman.modules.system.service;
 
import java.util.List;
import java.util.Map;
import com.qianwen.core.mp.base.BaseService;
import com.qianwen.smartman.modules.system.dto.BasCoderuleDTO;
import com.qianwen.smartman.modules.system.entity.BasCodeRule;
 
public interface IBasCoderuleService extends BaseService<BasCodeRule> {
    BasCoderuleDTO getCoderuleDetails(Long coderuleId);
 
    BasCodeRule submitCoderule(BasCoderuleDTO basCoderuleDTO);
 
    Boolean deleteCoderule(List<Long> ids);
 
    BasCodeRule getRuleByObjectType(Object data, String typeId);
 
    boolean isExistCodeRule(String typeId);
 
    boolean changeDefault(String id);
 
    List<String> patchCodeList(final String billFormId, final Map<String, Object> objectMap);
}