AdminAssoTxjlb.java 1.61 KB
Newer Older
ilal committed
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
package cn.timer.api.bean.admin;

import javax.persistence.GeneratedValue;
import javax.persistence.Id;
import javax.persistence.Table;

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 2020-11-09
 */
@Data
@Builder
@NoArgsConstructor
@AllArgsConstructor
@Table(name = "admin_asso_txjlb")
@ApiModel("系统消息记录")
public class AdminAssoTxjlb extends Model<AdminAssoTxjlb> {

	/**
	 * 
	 */
	private static final long serialVersionUID = 1L;

	@Id
	@GeneratedValue
	@TableId(type = IdType.AUTO)
	@ApiModelProperty(value = "id id", example = "101")
	private Integer id;

	@ApiModelProperty(value = "内容 ", example = "内容")
	private String content;

	@ApiModelProperty(value = "提醒用户姓名 提醒用户姓名", example = "101")
mobh committed
44
	private String userName;
ilal committed
45 46 47 48 49 50 51 52 53 54 55

	@ApiModelProperty(value = "提醒用户id 提醒用户id", example = "101")
	private Integer empNum;

	@ApiModelProperty(value = "提醒类型:1;证照... 提醒类型:1;证照...", example = "101")
	private Integer txType;

	@ApiModelProperty(value = "企业组织代码 企业组织代码", example = "101")
	private Integer orgCode;

	@ApiModelProperty(value = "生成时间 生成时间", example = "101")
ilal committed
56
	private Long addtime;
ilal committed
57 58 59 60 61

	@ApiModelProperty(value = "状态 0:未读 1:已读", example = "101")
	private Integer txstate;

}