2022-12-08 09:56:25 +08:00
|
|
|
package com.engine.organization.mapper.version;
|
|
|
|
|
|
2022-12-09 08:50:23 +08:00
|
|
|
import com.engine.organization.entity.version.HrmSubCompanyVersion;
|
|
|
|
|
import org.apache.ibatis.annotations.Param;
|
|
|
|
|
|
2022-12-08 09:56:25 +08:00
|
|
|
/**
|
|
|
|
|
* @Author weaver_cl
|
|
|
|
|
* @Description:
|
|
|
|
|
* @Date 2022/12/8
|
|
|
|
|
* @Version V1.0
|
|
|
|
|
**/
|
|
|
|
|
public interface CompanyVersionMapper {
|
2022-12-09 08:50:23 +08:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 取分部版本最大记录
|
|
|
|
|
*/
|
|
|
|
|
HrmSubCompanyVersion getMaxVersion(@Param("sid") String sid);
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 新增分部版本
|
|
|
|
|
*/
|
|
|
|
|
int insertHrmSubComVersion(HrmSubCompanyVersion hrmSubCompanyVersion);
|
2022-12-08 09:56:25 +08:00
|
|
|
}
|