zhangherong
2025-06-25 23855599412c4d61b38d78f0f3abd3430a48b5b1
lxzn-module-dnc/src/main/java/org/jeecg/modules/dnc/entity/DeviceCharacters.java
对比新文件
@@ -0,0 +1,48 @@
package org.jeecg.modules.dnc.entity;
import com.baomidou.mybatisplus.annotation.*;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.fasterxml.jackson.annotation.JsonIgnore;
import io.swagger.annotations.ApiModel;
import lombok.Data;
import lombok.NoArgsConstructor;
import org.jeecg.common.aspect.annotation.Dict;
import java.util.Date;
/**
 * @Description: 璁惧鐗规畩瀛楃
 * @author clown
 */
@Data
@NoArgsConstructor
@TableName(value = "nc_device_characters")
@ApiModel(value = "璁惧鐗规畩瀛楃")
public class DeviceCharacters {
    @TableId(value = "id")
    private String id;
    @TableField(value = "device_no")
    private String deviceNo;
    @TableField(value = "depart_id")
    @Dict(dictTable = "mdc_production",dicCode = "id",dicText = "production_name")
    private String departId;
    @TableField(value = "control_system")
    private String controlSystem;
    @TableField(value = "characters")
    private String characters;
    @JsonFormat(pattern="yyyy-MM-dd HH:mm:ss",timezone="GMT+8")
    @TableField(value = "create_time", fill = FieldFill.INSERT)
    private Date createTime;
    @TableField(value = "update_time", fill = FieldFill.UPDATE)
    @JsonFormat(pattern="yyyy-MM-dd HH:mm:ss",timezone="GMT+8")
    private Date updateTime;
    @TableField(value = "create_by",fill = FieldFill.INSERT)
    private String createBy;
    @TableField(value = "update_by", fill = FieldFill.UPDATE)
    private String updateBy;
    @JsonIgnore
    @TableLogic
    @TableField(value = "delete_flag", select = false)
    private Integer deleteFlag = 0;
}