package com.lxzn.framework.domain.base;
|
|
import com.baomidou.mybatisplus.annotation.*;
|
import com.fasterxml.jackson.annotation.JsonIgnore;
|
import lombok.Data;
|
import lombok.NoArgsConstructor;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
/**
|
* @author clown
|
* * @date 2022/11/7
|
*/
|
@Data
|
@NoArgsConstructor
|
@TableName(value = "dnc_log")
|
public class DncLog implements Serializable {
|
@TableId
|
private String id;
|
/*类型 MES,PLM*/
|
private String ncType;
|
/*设备编号*/
|
private String equipmentId;
|
/*工厂编号*/
|
private String workshopNo;
|
/*数据*/
|
private String contentName;
|
/*是否成功 是,否*/
|
private String isSuccess;
|
/*备注*/
|
private String remarks;
|
|
private String mesTaskId;
|
|
@TableField(value = "create_time", fill = FieldFill.INSERT)
|
private Date createTime;
|
@JsonIgnore
|
@TableField(value = "update_time", select = false, fill = FieldFill.UPDATE)
|
private Date updateTime;
|
@JsonIgnore
|
@TableField(value = "create_user", select = false, fill = FieldFill.INSERT)
|
private String createUser;
|
@JsonIgnore
|
@TableField(value = "update_user", select = false, fill = FieldFill.UPDATE)
|
private String updateUser;
|
@JsonIgnore
|
@TableLogic
|
@TableField(value = "delete_flag", select = false)
|
private Integer deleteFlag = 0;
|
|
}
|