fix: 优化逻辑

This commit is contained in:
tangwei 2026-07-16 14:48:35 +08:00
parent 9239a23d0d
commit 6e733f5519
2 changed files with 8 additions and 8 deletions

View File

@ -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")

View File

@ -25,6 +25,9 @@ public class MsThreedRoamMVO {
@Schema(description = "河段")
private String rvcd;
@Schema(description = "河段")
private String baseId;
@Schema(description = "备注")
private String remark;