XcglAssoJsgzzx.java 2.71 KB
Newer Older
yuquan.zhu committed
1 2
package cn.timer.api.bean.xcgl;

3 4 5 6
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.Id;
import javax.persistence.Table;
yuquan.zhu committed
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 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71

import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.extension.activerecord.Model;

import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;

/**
 * @author lal
 *
 */
@Entity
@Data
@Builder
@NoArgsConstructor
@AllArgsConstructor
@Table(name="xcgl_asso_jsgzzx")
@ApiModel("计薪规则组项")
public class XcglAssoJsgzzx extends Model<XcglAssoJsgzzx> {

    /**
	 * 
	 */
	private static final long serialVersionUID = -7779282068248192076L;

	@Id
    @GeneratedValue
    @TableId (type = IdType.AUTO)
	@ApiModelProperty(value="id",example="101")
    private Integer id;
    
	@ApiModelProperty(value="薪资项 ",example="薪资项")
    private String salaryitem;
    
	@ApiModelProperty(value="银行模板项 ",example="需与银行一一对应")
    private String yhmbzd;
    
	@ApiModelProperty(value="规则 ",example="规则")
    private String rule;
    
	@ApiModelProperty(value="类型 1:系统项;2:非系统项",example="101")
    private Integer type;
    
	@ApiModelProperty(value="添加时间",example="101")
    private Long addtime;
    
	@ApiModelProperty(value="添加人员id",example="101")
    private Integer adduserid;
    
	@ApiModelProperty(value="计薪规则组id 0:未加入组",example="101")
    private Integer jxgzid;
    
	@ApiModelProperty(value="备注 ",example="备注")
    private String remarks;
    
	@ApiModelProperty(value="公式id  0:未关联规则",example="101")
    private Integer gsid;
    
	@ApiModelProperty(value="公式格式 ",example="系统提供/自定义公式")
    private String gsgs;
mobh committed
72 73

	@ApiModelProperty(value="公式变量值1 ",example="系统提供/公式变量值1")
mobh committed
74
	private Double dygk;
mobh committed
75 76

	@ApiModelProperty(value="公式变量值2 ",example="系统提供/公式变量值2")
mobh committed
77
	private Double degk;
yuquan.zhu committed
78 79 80 81 82 83 84 85 86
	
	@ApiModelProperty(value="薪资组id ",example="薪资组id")
	private Integer xzzid;
	
	@ApiModelProperty(value="规则状态[0:系统自动提取;1:系统固定值;2:固定公式计算;3:自定义公式计算;4:每月自动导入]",example="0")
	private Integer rulestate;
    
	@ApiModelProperty(value="薪资选项id",example="薪资选项id")
	private Integer optionid;
ilal committed
87 88 89
	
	@ApiModelProperty(value="是否自定义项(0:否;1:是)",example="0")
	private Integer isCustom;
ilal committed
90 91 92
	
	@ApiModelProperty(value="薪资档案自定义id",example="0")
	private Integer xzdazdyid;
yuquan.zhu committed
93
}