1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
| package org.jeecg.modules.system.service;
|
| import org.jeecg.modules.system.entity.SysBusinessCodeRule;
| import com.baomidou.mybatisplus.extension.service.IService;
|
| /**
| * @Description: 业务编码规则
| * @Author: jeecg-boot
| * @Date: 2025-03-17
| * @Version: V1.0
| */
| public interface ISysBusinessCodeRuleService extends IService<SysBusinessCodeRule> {
| /**
| * 生成业务编码对应的流水号
| * @param businessCode 业务编码
| * @return
| */
| String generateBusinessCodeSeq(String businessCode);
| }
|
|