diff --git a/backend/src/main/java/com/yfd/platform/qgc_sys/threedRoam/domain/MsThreedRoamMEntity.java b/backend/src/main/java/com/yfd/platform/qgc_sys/threedRoam/domain/MsThreedRoamMEntity.java index 2d9d82dc..28c28121 100644 --- a/backend/src/main/java/com/yfd/platform/qgc_sys/threedRoam/domain/MsThreedRoamMEntity.java +++ b/backend/src/main/java/com/yfd/platform/qgc_sys/threedRoam/domain/MsThreedRoamMEntity.java @@ -1,9 +1,6 @@ package com.yfd.platform.qgc_sys.threedRoam.domain; -import com.baomidou.mybatisplus.annotation.IdType; -import com.baomidou.mybatisplus.annotation.TableField; -import com.baomidou.mybatisplus.annotation.TableId; -import com.baomidou.mybatisplus.annotation.TableName; +import com.baomidou.mybatisplus.annotation.*; import lombok.Data; import java.io.Serializable; @@ -36,16 +33,16 @@ public class MsThreedRoamMEntity implements Serializable { @TableField("REMARK") private String remark; - @TableField("RECORD_USER") + @TableField(value = "RECORD_USER",fill = FieldFill.INSERT) private String recordUser; - @TableField("RECORD_TIME") + @TableField(value = "RECORD_TIME",fill = FieldFill.INSERT) private Date recordTime; - @TableField("MODIFY_USER") + @TableField(value = "MODIFY_USER",fill = FieldFill.INSERT_UPDATE) private String modifyUser; - @TableField("MODIFY_TIME") + @TableField(value = "MODIFY_TIME",fill = FieldFill.INSERT_UPDATE) private Date modifyTime; @TableField("IS_DELETED") diff --git a/backend/src/main/java/com/yfd/platform/qgc_sys/threedRoam/dto/MsThreedRoamMVO.java b/backend/src/main/java/com/yfd/platform/qgc_sys/threedRoam/dto/MsThreedRoamMVO.java index 7fb0a15b..ec9c6e91 100644 --- a/backend/src/main/java/com/yfd/platform/qgc_sys/threedRoam/dto/MsThreedRoamMVO.java +++ b/backend/src/main/java/com/yfd/platform/qgc_sys/threedRoam/dto/MsThreedRoamMVO.java @@ -25,6 +25,9 @@ public class MsThreedRoamMVO { @Schema(description = "河段") private String rvcd; + @Schema(description = "河段") + private String baseId; + @Schema(description = "备注") private String remark;