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
580 B
Java
25 lines
580 B
Java
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 {
|
|
|
|
Integer 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);
|
|
}
|