You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
576 B
Java
25 lines
576 B
Java
3 years ago
|
package com.engine.organization.mapper.trigger;
|
||
|
|
||
|
|
||
|
import org.apache.ibatis.annotations.Param;
|
||
|
|
||
|
import java.sql.Date;
|
||
|
|
||
|
/**
|
||
|
* @Author dxfeng
|
||
|
* @Date 2022/8/30
|
||
|
* @Version V1.0
|
||
|
**/
|
||
|
public interface GroupTriggerMapper {
|
||
|
|
||
|
int getInfoValue(@Param("id") Integer id);
|
||
|
|
||
|
Integer sumStaffNum(@Param("fdatebegin") Date fdatebegin);
|
||
|
|
||
|
Integer countHrmResource();
|
||
|
|
||
|
int deleteMap(@Param("fobjid") Integer fobjid, @Param("fdatebegin") Date fdatebegin);
|
||
|
|
||
|
int updateMap(@Param("fobjid") Integer fobjid, @Param("fdatebegin") Date fdatebegin, @Param("fdate") Date fdate);
|
||
|
}
|