From c06fab29ca7826a6dc9736c1ba8ce1e26a11c829 Mon Sep 17 00:00:00 2001 From: lyh <925863403@qq.com> Date: 星期四, 06 三月 2025 15:57:08 +0800 Subject: [PATCH] 新增层级结构工艺规程版本、结构树表、新权限表 修改原有权限验证 删除原有代码 --- lxzn-module-dnc/src/main/java/org/jeecg/modules/dnc/entity/ProcessStream.java | 13 +++++++++---- 1 files changed, 9 insertions(+), 4 deletions(-) diff --git a/lxzn-module-dnc/src/main/java/org/jeecg/modules/dnc/entity/ProcessStream.java b/lxzn-module-dnc/src/main/java/org/jeecg/modules/dnc/entity/ProcessStream.java index 37ab638..df056cc 100644 --- a/lxzn-module-dnc/src/main/java/org/jeecg/modules/dnc/entity/ProcessStream.java +++ b/lxzn-module-dnc/src/main/java/org/jeecg/modules/dnc/entity/ProcessStream.java @@ -1,5 +1,6 @@ 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.Api; import lombok.Data; @@ -21,6 +22,8 @@ private String componentId; @TableField(value = "parts_id") private String partsId; + @TableField(value = "psv_id") + private String psvId; @TableField(value = "process_name") private String processName; @TableField(value = "process_code") @@ -33,6 +36,8 @@ private Integer processType; @TableField(value = "processing_equipment_model") private String processingEquipmentModel; + @TableField(value = "processing_equipment_os") + private String processingEquipmentOs; @TableField(value = "processing_equipment_code") private String processingEquipmentCode; @TableField(value = "assemble_step") @@ -41,11 +46,11 @@ private String assembleName; @TableField(value = "description") private String description; - @JsonIgnore - @TableField(value = "create_time", select = false, fill = FieldFill.INSERT) + @JsonFormat(pattern="yyyy-MM-dd HH:mm:ss",timezone="GMT+8") + @TableField(value = "create_time", fill = FieldFill.INSERT) private Date createTime; - @JsonIgnore - @TableField(value = "update_time", select = false, fill = FieldFill.UPDATE) + @JsonFormat(pattern="yyyy-MM-dd HH:mm:ss",timezone="GMT+8") + @TableField(value = "update_time", fill = FieldFill.INSERT) private Date updateTime; @JsonIgnore @TableField(value = "create_by", select = false, fill = FieldFill.INSERT) -- Gitblit v1.9.3