yangys
2024-04-04 ed4a5236bab800094be4a8378f5098eebe3de6ac
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
package com.qianwen.smartman.modules.system.service;
 
import java.util.List;
import com.qianwen.core.mp.base.BaseService;
import com.qianwen.core.tool.api.R;
import com.qianwen.smartman.modules.system.entity.CustomTemplateField;
import com.qianwen.smartman.modules.system.vo.CustomFieldRelationListVO;
import com.qianwen.smartman.modules.system.vo.CustomFieldRelationSelectVO;
import com.qianwen.smartman.modules.system.vo.CustomTemplateFieldColumnVO;
import com.qianwen.smartman.modules.system.vo.CustomTemplateFieldSubmitVO;
import com.qianwen.smartman.modules.system.vo.CustomTemplateFieldUpdateVO;
 
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/system/service/ICustomTemplateFieldService.class */
public interface ICustomTemplateFieldService extends BaseService<CustomTemplateField> {
    CustomTemplateField saveField(CustomTemplateFieldSubmitVO customTemplateFieldSubmitVO);
 
    CustomTemplateField updateField(CustomTemplateFieldUpdateVO customTemplateFieldUpdateVO);
 
    R removeFields(List<Long> ids);
 
    CustomFieldRelationSelectVO getSelectBox(Long templateId, Integer configType);
 
    CustomFieldRelationListVO listField(Long templateId, Integer configType);
 
    CustomTemplateField findFieldById(Long id);
 
    List<CustomTemplateFieldColumnVO> getColumns(Long templateId, Integer configType);
 
    CustomTemplateField getField(String fieldCode, Integer busType);
 
    Object fieldCheck(Integer businessType, String fieldCode, String value);
}