songhuangfeng123
2022-08-09 dc1f8126ce1e5ff191a122a84ea65f4ba6918a04
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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;
    }
}