You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
788 B
Java
40 lines
788 B
Java
package com.engine.organization.service;
|
|
|
|
import com.engine.organization.entity.codesetting.param.CodeSaveParam;
|
|
import com.engine.organization.util.response.ReturnResult;
|
|
|
|
/**
|
|
* @Author weaver_cl
|
|
* @Description: TODO
|
|
* @Date 2022/5/30
|
|
* @Version V1.0
|
|
**/
|
|
public interface CodeSettingService {
|
|
|
|
/***
|
|
* 是否具有权限
|
|
* @param serialtype
|
|
* @return
|
|
*/
|
|
ReturnResult getHasRight(String serialtype);
|
|
|
|
/**
|
|
* 保存更新
|
|
* @param params
|
|
*/
|
|
String saveOrUpdateCodeSetting(CodeSaveParam params);
|
|
|
|
/**
|
|
* 获取主表id
|
|
* @param serialType
|
|
* @return
|
|
*/
|
|
Long getCodeRuleId(String serialType);
|
|
|
|
/**
|
|
* 获取编码规则配置信息
|
|
* @return
|
|
*/
|
|
String getCodeSetting(String serialType);
|
|
}
|