package me.zhengjie.dao.mybatis.entity; import com.baomidou.mybatisplus.annotation.IdType; import com.baomidou.mybatisplus.annotation.TableField; import com.baomidou.mybatisplus.annotation.TableId; import com.baomidou.mybatisplus.annotation.TableName; import lombok.Getter; import lombok.Setter; import lombok.ToString; import java.io.Serializable; import java.util.Date; @TableName("order_file") @Getter @Setter @ToString public class OrderFileEntity implements Serializable { private static final long serialVersionUID = 1L; @TableId(value = "id", type = IdType.AUTO) private Integer id; @TableField("business_no") private String businessNo; @TableField("code") private String code; @TableField("doc_no") private String docNo; @TableField("html_url") private String htmlUrl; @TableField("pdf_url") private String pdfUrl; @TableField("signed_pdf_url") private String signedPdfUrl; @TableField("sort_num") private Integer sortNum; @TableField("axq_contract_no") private String axqContractNo; @TableField("axq_signed_time") private Date axqSignedTime; @TableField("create_time") private Date createTime; @TableField("creator_id") private Long creatorId; @TableField("update_time") private Date updateTime; @TableField("updater_id") private Long updaterId; @TableField("file_name") private String fileName; }