| New file |
| | |
| | | package com.zy.third.entity; |
| | | |
| | | import com.baomidou.mybatisplus.annotations.TableField; |
| | | import com.baomidou.mybatisplus.annotations.TableId; |
| | | import com.baomidou.mybatisplus.annotations.TableName; |
| | | import java.io.Serializable; |
| | | import java.util.Date; |
| | | import lombok.Data; |
| | | |
| | | /** |
| | | * |
| | | * @TableName Exd_Material |
| | | */ |
| | | @TableName(value ="Exd_Material") |
| | | @Data |
| | | public class ExdMaterial implements Serializable { |
| | | /** |
| | | * |
| | | */ |
| | | @TableId |
| | | private String id; |
| | | |
| | | /** |
| | | * |
| | | */ |
| | | private String fnumber; |
| | | |
| | | /** |
| | | * |
| | | */ |
| | | private String fname; |
| | | |
| | | /** |
| | | * |
| | | */ |
| | | private String fmodel; |
| | | |
| | | /** |
| | | * |
| | | */ |
| | | private Date writetime; |
| | | |
| | | /** |
| | | * |
| | | */ |
| | | private String writor; |
| | | |
| | | /** |
| | | * |
| | | */ |
| | | private Integer status; |
| | | |
| | | /** |
| | | * |
| | | */ |
| | | private Date readtime; |
| | | |
| | | /** |
| | | * |
| | | */ |
| | | private String reador; |
| | | |
| | | /** |
| | | * |
| | | */ |
| | | private String writormsg; |
| | | |
| | | /** |
| | | * |
| | | */ |
| | | private String readormsg; |
| | | |
| | | @TableField(exist = false) |
| | | private static final long serialVersionUID = 1L; |
| | | } |