客户管理-附件

This commit is contained in:
2025-12-02 15:39:11 +08:00
parent 9bfda21a15
commit 27ff645a3b
5 changed files with 23 additions and 9 deletions

View File

@ -63,7 +63,7 @@ public class AddLngFileUploadDto implements Serializable {
*/ */
@ApiModelProperty("") @ApiModelProperty("")
@LogField(name="",index=0) @LogField(name="",index=0)
private Long filesize; private Long fileSize;
/** /**
* *
*/ */
@ -83,4 +83,8 @@ public class AddLngFileUploadDto implements Serializable {
@LogField(name="",index=0) @LogField(name="",index=0)
private Long tenantId; private Long tenantId;
@LogField(name="",index=10)
@ApiModelProperty("")
private Long xjrFileId;
} }

View File

@ -80,7 +80,7 @@ public class UpdateLngFileUploadDto implements Serializable {
*/ */
@LogField(name="",index=6) @LogField(name="",index=6)
@ApiModelProperty("") @ApiModelProperty("")
private Long filesize; private Long fileSize;
/** /**
* *
@ -103,5 +103,7 @@ public class UpdateLngFileUploadDto implements Serializable {
@ApiModelProperty("") @ApiModelProperty("")
private Long tenantId; private Long tenantId;
@LogField(name="",index=10)
@ApiModelProperty("")
private Long xjrFileId;
} }

View File

@ -9,6 +9,7 @@ import java.math.BigDecimal;
import java.util.List; import java.util.List;
import com.baomidou.mybatisplus.annotation.TableField; import com.baomidou.mybatisplus.annotation.TableField;
import com.pictc.annotations.datalog.LogField;
/** /**
* @title: 表单出参 * @title: 表单出参
@ -65,7 +66,7 @@ public class LngFileUploadVo {
* *
*/ */
@ApiModelProperty("") @ApiModelProperty("")
private Long filesize; private Long fileSize;
/** /**
@ -135,4 +136,8 @@ public class LngFileUploadVo {
private String presignedUrl; private String presignedUrl;
@LogField(name="",index=10)
@ApiModelProperty("")
private Long xjrFileId;
} }

View File

@ -71,7 +71,7 @@ public class LngFileUpload implements Serializable {
* *
*/ */
@ApiModelProperty("") @ApiModelProperty("")
private Long filesize; private Long fileSize;
/** /**
* *
@ -137,4 +137,7 @@ public class LngFileUpload implements Serializable {
@TableField(exist = false) @TableField(exist = false)
private String presignedUrl; private String presignedUrl;
//@ApiModelProperty("")
//private Long xjrFileId;
} }