From 13a34d2197b001799ef8f0f09e5b48af2add0926 Mon Sep 17 00:00:00 2001 From: lsh <lsh@163.com> Date: 星期一, 15 四月 2024 09:25:31 +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