liusheng
2024-03-11 7a1a246539b16c7e81006fb79dd2885d94aa8c01
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
package com.ruoyi.project.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.ruoyi.project.domain.BaseOnlyvalue;
 
import java.util.List;
 
/**
 * 业务数据唯一值Service接口
 *
 * @author ruoyi
 * @date 2023-09-20
 */
public interface IBaseOnlyvalueService extends IService<BaseOnlyvalue> {
 
    /**
     * 查询业务数据唯一值列表
     *
     * @param baseOnlyvalue 业务数据唯一值
     * @return 业务数据唯一值集合
     */
    public List<BaseOnlyvalue> queryList(BaseOnlyvalue baseOnlyvalue);
 
    /**
     * 获取唯一编号
     *
     * @param businessType
     * @return
     */
    public BaseOnlyvalue getOnlyCode(String businessType, Boolean datequery);
}