2022-09-01 16:57:06 +08:00
|
|
|
package com.engine.organization.mapper.trigger;
|
|
|
|
|
|
2022-09-21 10:43:41 +08:00
|
|
|
import com.engine.organization.entity.cusfielddata.po.CusFieldData;
|
2022-09-01 16:57:06 +08:00
|
|
|
import org.apache.ibatis.annotations.Param;
|
|
|
|
|
import weaver.hrm.passwordprotection.domain.HrmResource;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @author:dxfeng
|
|
|
|
|
* @createTime: 2022/09/01
|
|
|
|
|
* @version: 1.0
|
|
|
|
|
*/
|
|
|
|
|
public interface HrmResourceTriggerMapper {
|
|
|
|
|
HrmResource getHrmResource(@Param("id") Long id);
|
|
|
|
|
|
2022-09-21 10:43:41 +08:00
|
|
|
CusFieldData getCusFieldDataById(@Param("fObjId") Integer fObjId);
|
2022-09-01 16:57:06 +08:00
|
|
|
|
|
|
|
|
}
|