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.
20 lines
471 B
Java
20 lines
471 B
Java
3 years ago
|
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);
|
||
|
|
||
|
void updateCodeRule(@Param("codeRulePO") CodeRulePO codeRulePO);
|
||
|
|
||
|
void insertCodeRule(CodeRulePO codeRulePO);
|
||
|
}
|