weaver-hrm-organization/src/com/engine/organization/mapper/codesetting/CodeRuleMapper.java

22 lines
546 B
Java
Raw Normal View History

2022-05-31 17:56:00 +08:00
package com.engine.organization.mapper.codesetting;
import com.engine.organization.entity.codesetting.po.CodeRulePO;
import org.apache.ibatis.annotations.Param;
/**
* @Author weaver_cl
* @Description: TODO
* @Date 2022/5/31
* @Version V1.0
**/
public interface CodeRuleMapper {
Long getCodeRuleId(@Param("serialType") String serialType);
2022-06-06 13:17:35 +08:00
CodeRulePO getCodeRuleByType(@Param("serialType") String serialType);
2022-05-31 17:56:00 +08:00
void updateCodeRule(@Param("codeRulePO") CodeRulePO codeRulePO);
void insertCodeRule(CodeRulePO codeRulePO);
}