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/mapper/codesetting/CodeRuleMapper.java

22 lines
541 B
Java

package com.engine.organization.mapper.codesetting;
import com.engine.organization.entity.codesetting.po.CodeRulePO;
import org.apache.ibatis.annotations.Param;
/**
* @Author weaver_cl
* @description:
* @Date 2022/5/31
* @Version V1.0
**/
public interface CodeRuleMapper {
Long getCodeRuleId(@Param("serialType") String serialType);
CodeRulePO getCodeRuleByType(@Param("serialType") String serialType);
void updateCodeRule(@Param("codeRulePO") CodeRulePO codeRulePO);
void insertCodeRule(CodeRulePO codeRulePO);
}