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.
weaver-hrm-organization/src/com/engine/organization/service/CodeSettingService.java

40 lines
788 B
Java

3 years ago
package com.engine.organization.service;
3 years ago
import com.engine.organization.entity.codesetting.param.CodeSaveParam;
3 years ago
import com.engine.organization.util.response.ReturnResult;
3 years ago
/**
* @Author weaver_cl
* @Description: TODO
* @Date 2022/5/30
* @Version V1.0
**/
public interface CodeSettingService {
3 years ago
3 years ago
/***
*
* @param serialtype
* @return
*/
3 years ago
ReturnResult getHasRight(String serialtype);
3 years ago
/**
*
* @param params
*/
String saveOrUpdateCodeSetting(CodeSaveParam params);
3 years ago
/**
* id
* @param serialType
* @return
*/
Long getCodeRuleId(String serialType);
/**
*
* @return
*/
String getCodeSetting(String serialType);
3 years ago
}