XcglAssoGztzt.java 1.95 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

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 2019-12-12
*/
@Entity
@Data
@Builder
@NoArgsConstructor
@AllArgsConstructor
@Table(name="xcgl_asso_gztzt")
@ApiModel("工资条组内成员状态")
public class XcglAssoGztzt extends Model<XcglAssoGztzt> {

	private static final long serialVersionUID = -3805877765856830893L;

	@Id
    @GeneratedValue
    @TableId (type = IdType.AUTO)
	@ApiModelProperty(value="id id",example="101")
    private Integer id;
    
	@ApiModelProperty(value="用户ID 用户ID",example="101")
    private Integer userid;
    
	@ApiModelProperty(value="薪资月 ",example="薪资月")
    private String xzyf;
    
	@ApiModelProperty(value="发送状态 0:未发送 1:已发送",example="101")
    private Integer fsType;
    
	@ApiModelProperty(value="查看状态 0:未 1:已",example="101")
    private Integer ckType;
    
	@ApiModelProperty(value="确认状态 0:未 1:已",example="101")
    private Integer qrType;
    
	@ApiModelProperty(value="反馈意见 ",example="反馈意见")
    private String fkyj;
    
	@ApiModelProperty(value="用户签名 ",example="用户签名")
    private String yhqm;
    
	@ApiModelProperty(value="企业id 企业id",example="101")
    private Integer qyid;
	
	@ApiModelProperty(value="工资条组id",example="101")
	private Integer gztszid;
ilal committed
65 66 67
	
	@ApiModelProperty(value="实发工资",example="101")
	private Double sfgz;
ilal committed
68 69 70
	
	@ApiModelProperty(value="薪资组id",example="101")
	private Integer xzzid;
yuquan.zhu committed
71 72 73
    

}