Houjie
8 天以前 ed32b4831acf1612d23015d85ff4a14db7f9f77d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package org.jeecg.modules.system.service;
 
import org.jeecg.common.system.base.entity.DataVersion;
import com.baomidou.mybatisplus.extension.service.IService;
 
import java.util.List;
 
/**
 * @Description: mom_sys_data_version
 * @Author: jeecg-boot
 * @Date:   2022-12-07
 * @Version: V1.0
 */
public interface IDataVersionService extends IService<DataVersion> {
 
    void removeDataVersionByBusinessId(String businessId);
 
    String getVersionStatusByVersionAndBusinessType(Integer version, String businessType);
 
    List<DataVersion> getLastDataVersion(String businessType, String enterpriseId, String isLastusable);
 
    List<DataVersion> getDataVersionList(String businessType, String enterpriseId, String versionStatus, String version);
}