接口 Y9OptionValueService
-
- 所有已知实现类:
Y9OptionValueServiceImpl
public interface Y9OptionValueService- 作者:
- dingzhaojun, qinman, mengjuhua
- Date:
- 2022/2/10
-
-
方法概要
所有方法 实例方法 抽象方法 修饰符和类型 方法 说明 Y9OptionValuecreate(String code, String name, String type)创建voiddelete(String[] ids)根据id数组,删除字典数据voiddeleteByType(String type)根据type,删除字典数据List<Y9OptionValue>listByType(String type)根据字典类型,获取字典属性值列表Y9OptionValuesaveOptionValue(Y9OptionValue optionValue)保存新增字典数据
-
-
-
方法详细资料
-
create
Y9OptionValue create(String code, String name, String type)
创建- 参数:
code- 代码name- 名字type- 字典类型- 返回:
Y9OptionValue
-
delete
void delete(String[] ids)
根据id数组,删除字典数据- 参数:
ids- id数组
-
deleteByType
void deleteByType(String type)
根据type,删除字典数据- 参数:
type- 字典类型
-
listByType
List<Y9OptionValue> listByType(String type)
根据字典类型,获取字典属性值列表- 参数:
type- 字典类型- 返回:
List<Y9OptionValue>
-
saveOptionValue
Y9OptionValue saveOptionValue(Y9OptionValue optionValue)
保存新增字典数据- 参数:
optionValue- 字典数据对象- 返回:
Y9OptionValue
-
-