类 Y9OptionValueServiceImpl
- java.lang.Object
-
- net.risesoft.service.dictionary.impl.Y9OptionValueServiceImpl
-
- 所有已实现的接口:
Y9OptionValueService
@Transactional(value="rsTenantTransactionManager", readOnly=true) @Service public class Y9OptionValueServiceImpl extends Object implements Y9OptionValueService- 作者:
- dingzhaojun, qinman, mengjuhua
- Date:
- 2022/2/10
-
-
构造器概要
构造器 构造器 说明 Y9OptionValueServiceImpl()
-
方法概要
所有方法 实例方法 具体方法 修饰符和类型 方法 说明 Y9OptionValuecreate(String code, String name, String type)创建voiddelete(String[] ids)根据id数组,删除字典数据voiddeleteByType(String type)根据type,删除字典数据List<Y9OptionValue>listByType(String type)根据字典类型,获取字典属性值列表Y9OptionValuesaveOptionValue(Y9OptionValue optionValue)保存新增字典数据
-
-
-
方法详细资料
-
create
@Transactional(readOnly=false) public Y9OptionValue create(String code, String name, String type)
从接口复制的说明:Y9OptionValueService创建- 指定者:
create在接口中Y9OptionValueService- 参数:
code- 代码name- 名字type- 字典类型- 返回:
Y9OptionValue
-
delete
@Transactional(readOnly=false) public void delete(String[] ids)
从接口复制的说明:Y9OptionValueService根据id数组,删除字典数据- 指定者:
delete在接口中Y9OptionValueService- 参数:
ids- id数组
-
deleteByType
@Transactional(readOnly=false) public void deleteByType(String type)
从接口复制的说明:Y9OptionValueService根据type,删除字典数据- 指定者:
deleteByType在接口中Y9OptionValueService- 参数:
type- 字典类型
-
listByType
public List<Y9OptionValue> listByType(String type)
从接口复制的说明:Y9OptionValueService根据字典类型,获取字典属性值列表- 指定者:
listByType在接口中Y9OptionValueService- 参数:
type- 字典类型- 返回:
List<Y9OptionValue>
-
saveOptionValue
@Transactional(readOnly=false) public Y9OptionValue saveOptionValue(Y9OptionValue optionValue)
从接口复制的说明:Y9OptionValueService保存新增字典数据- 指定者:
saveOptionValue在接口中Y9OptionValueService- 参数:
optionValue- 字典数据对象- 返回:
Y9OptionValue
-
-