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") private String userName; @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") private Long addtime; @ApiModelProperty(value = "状态 0:未读 1:已读", example = "101") private Integer txstate; }