16 lines
280 B
Java
16 lines
280 B
Java
|
|
package com.engine.salary.mapper.sischeme;
|
||
|
|
|
||
|
|
import com.engine.salary.entity.sischeme.po.InsuranceSchemePO;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @Author weaver_cl
|
||
|
|
* @Description: TODO
|
||
|
|
* @Date 2022/3/7
|
||
|
|
* @Version V1.0
|
||
|
|
**/
|
||
|
|
public interface InsuranceSchemeMapper {
|
||
|
|
|
||
|
|
InsuranceSchemePO getById(Long id);
|
||
|
|
|
||
|
|
}
|