| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 | package org.jeecg.modules.demo.hzz.shjsgc.engineeringpush.entity;import java.io.Serializable;import java.io.UnsupportedEncodingException;import java.util.Date;import java.math.BigDecimal;import com.baomidou.mybatisplus.annotation.IdType;import com.baomidou.mybatisplus.annotation.TableId;import com.baomidou.mybatisplus.annotation.TableName;import lombok.Data;import com.fasterxml.jackson.annotation.JsonFormat;import org.springframework.format.annotation.DateTimeFormat;import org.jeecgframework.poi.excel.annotation.Excel;import org.jeecg.common.aspect.annotation.Dict;import io.swagger.annotations.ApiModel;import io.swagger.annotations.ApiModelProperty;import lombok.EqualsAndHashCode;import lombok.experimental.Accessors;/** * @Description: 工程推送 * @Author: jeecg-boot * @Date:   2023-03-11 * @Version: V1.0 */@Data@TableName("rm_engineeringpush")@Accessors(chain = true)@EqualsAndHashCode(callSuper = false)@ApiModel(value="rm_engineeringpush对象", description="工程推送")public class RmEngineeringpush implements Serializable {    private static final long serialVersionUID = 1L;	/**主键*/	@TableId(type = IdType.ASSIGN_ID)    @ApiModelProperty(value = "主键")    private String id;	/**创建人*/    @ApiModelProperty(value = "创建人")    private String createBy;	/**创建日期*/	@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")    @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")    @ApiModelProperty(value = "创建日期")    private Date createTime;	/**更新人*/    @ApiModelProperty(value = "更新人")    private String updateBy;	/**更新日期*/	@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")    @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")    @ApiModelProperty(value = "更新日期")    private Date updateTime;	/**所属部门*/    @ApiModelProperty(value = "所属部门")    private String sysOrgCode;	/**用户id*/	@Excel(name = "用户id", width = 15)    @ApiModelProperty(value = "用户id")    private String userid;    /**用户姓名*/    @Excel(name = "用户姓名", width = 15)    @ApiModelProperty(value = "用户姓名")    private String realname;	/**项目id*/	@Excel(name = "项目id", width = 15)    @ApiModelProperty(value = "项目id")    private String xmid;	/**是否已读*/	@Excel(name = "是否已读", width = 15)    @ApiModelProperty(value = "是否已读")    private String readFlag;	/**已读时间*/	@Excel(name = "已读时间", width = 15, format = "yyyy-MM-dd HH:mm:ss")	@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")    @DateTimeFormat(pattern="yyyy-MM-dd")    @ApiModelProperty(value = "已读时间")    private Date readTime;}
 |