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_Department
|
*/
|
@TableName(value ="Exd_Department")
|
@Data
|
public class ExdDepartment implements Serializable {
|
/**
|
*
|
*/
|
@TableId
|
private String id;
|
|
/**
|
*
|
*/
|
private String fnumber;
|
|
/**
|
*
|
*/
|
private String fname;
|
|
/**
|
*
|
*/
|
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;
|
}
|