package com.gkhy.safePlatform.targetDuty.model.dto.req;
|
|
import java.sql.Timestamp;
|
import com.gkhy.safePlatform.targetDuty.annotation.Query;
|
|
public class RewardPunishmentStandardQueryCriteria {
|
|
//奖惩类型 1:奖励 2:惩罚
|
@Query()
|
private Integer standardType;
|
//奖惩类型 1:奖励 2:惩罚
|
public Integer getStandardType() {
|
return standardType;
|
}
|
|
public void setStandardType(Integer standardType) {
|
this.standardType = standardType;
|
}
|
}
|