|  |  |  | 
|---|
|  |  |  |  | 
|---|
|  |  |  | import com.baomidou.mybatisplus.annotation.TableField; | 
|---|
|  |  |  | import com.doumee.core.annotation.excel.ExcelColumn; | 
|---|
|  |  |  | import com.doumee.core.model.LoginUserModel; | 
|---|
|  |  |  | import io.swagger.annotations.ApiModel; | 
|---|
|  |  |  | import io.swagger.annotations.ApiModelProperty; | 
|---|
|  |  |  | import com.baomidou.mybatisplus.annotation.IdType; | 
|---|
|  |  |  | 
|---|
|  |  |  | @Data | 
|---|
|  |  |  | @ApiModel("附件上传信息表") | 
|---|
|  |  |  | @TableName("`multifile`") | 
|---|
|  |  |  | public class Multifile { | 
|---|
|  |  |  | public class Multifile extends LoginUserModel { | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @TableId(type = IdType.AUTO) | 
|---|
|  |  |  | @ApiModelProperty(value = "主键", example = "1") | 
|---|
|  |  |  | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @ApiModelProperty(value = "文件地址") | 
|---|
|  |  |  | @TableField(exist = false) | 
|---|
|  |  |  | private String fileFullUrl; | 
|---|
|  |  |  | private String fileurlFull; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | } | 
|---|