fix
songhuangfeng123
2022-07-27 a2c3c7a3032ac93bbcfd83f055b036f7e8b6c20b
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;
    }
}