From 4e3a145c822e37f3fa1af0f6ed7f78148fa9003f Mon Sep 17 00:00:00 2001 From: LSH Date: 星期一, 04 十二月 2023 09:53:41 +0800 Subject: [PATCH] # --- src/main/java/com/zy/crm/system/entity/AppVersion.java | 21 +++++++++++++++++++++ 1 files changed, 21 insertions(+), 0 deletions(-) diff --git a/src/main/java/com/zy/crm/system/entity/AppVersion.java b/src/main/java/com/zy/crm/system/entity/AppVersion.java index d7c171e..b80ae5d 100644 --- a/src/main/java/com/zy/crm/system/entity/AppVersion.java +++ b/src/main/java/com/zy/crm/system/entity/AppVersion.java @@ -1,5 +1,6 @@ package com.zy.crm.system.entity; +import com.baomidou.mybatisplus.annotations.TableField; import com.baomidou.mybatisplus.annotations.TableId; import com.baomidou.mybatisplus.annotations.TableName; import com.baomidou.mybatisplus.enums.IdType; @@ -42,6 +43,26 @@ @ApiModelProperty(value= "app绫诲瀷 0: pda 1: lcd ") private Integer type; + /** + * app璺緞 + */ + @ApiModelProperty(value= "appurl") + private String url; + + /** + * app璺緞 + */ + @ApiModelProperty(value= "appSize") + @TableField("file_size") + private Long fileSize; + + /** + * app璺緞 + */ + @ApiModelProperty(value= "userName") + @TableField("user_name") + private String userName; + public AppVersion() {} public AppVersion(String version, String path, Integer latest, Integer type) { -- Gitblit v1.9.1