liusheng
2024-07-26 fb4d7127cd860b39e1c1c4242cfbbc09a659fc7a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
package com.ruoyi.project.domain;
 
import com.ruoyi.common.core.domain.BaseEntity;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import org.springframework.lang.NonNull;
 
/**
 * SP_STAT_BONUS
 *
 * @author ls
 * @date 2024-03-11
 */
@Data
@ApiModel("SpStatBonusReq")
public class SpStatBonusReq {
    private static final long serialVersionUID = 1L;
 
    /**
     * pabegtime
     */
    @ApiModelProperty("pabegtime")
    private String pabegtime = "";
 
    /**
     * deppaendtimetid
     */
    @ApiModelProperty("paendtime")
    private String paendtime = "";
 
    /**
     * padeptno
     */
    @ApiModelProperty("padeptno")
    private String padeptno = "";
 
    /**
     * pausername
     */
    @ApiModelProperty("pausername")
    private String pausername = "";
 
    /**
     * 绩效类型:1、月度、2、季度、3、年度
     */
    @ApiModelProperty("绩效类型:1、月度、2、季度、3、年度")
    private String pabonustype = "";
 
}