|
|
@@ -0,0 +1,43 @@
|
|
|
+package com.gree.mall.manager.bean.goods;
|
|
|
+
|
|
|
+import com.gree.mall.manager.annotation.ZfireField;
|
|
|
+import io.swagger.annotations.ApiModel;
|
|
|
+import io.swagger.annotations.ApiModelProperty;
|
|
|
+import lombok.Data;
|
|
|
+
|
|
|
+@Data
|
|
|
+@ApiModel
|
|
|
+@ZfireField(tbName = "a")
|
|
|
+public class GoodsDocumentsFileVO {
|
|
|
+
|
|
|
+ @ZfireField(hide = true)
|
|
|
+ @ApiModelProperty(value = "id")
|
|
|
+ private String id;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "文件夹名称")
|
|
|
+ private String folderName;
|
|
|
+
|
|
|
+ @ZfireField(hide = true)
|
|
|
+ @ApiModelProperty(value = "父分类id")
|
|
|
+ private String parentCategoryId;
|
|
|
+
|
|
|
+ @ZfireField(tbName = "b", colName = "name", ignoreSelect = true)
|
|
|
+ @ApiModelProperty(value = "父分类名称")
|
|
|
+ private String parentCategoryName;
|
|
|
+
|
|
|
+ @ZfireField(hide = true)
|
|
|
+ @ApiModelProperty(value = "分类id")
|
|
|
+ private String categoryId;
|
|
|
+
|
|
|
+ @ZfireField(tbName = "c")
|
|
|
+ @ApiModelProperty(value = "分类名称")
|
|
|
+ private String name;
|
|
|
+
|
|
|
+ @ZfireField(hide = true, tbName = "e", colName = "id", ignoreSelect = true)
|
|
|
+ @ApiModelProperty(value = "文件名id")
|
|
|
+ private String fileId;
|
|
|
+
|
|
|
+ @ZfireField(tbName = "e", colName = "name", ignoreSelect = true)
|
|
|
+ @ApiModelProperty(value = "文件名")
|
|
|
+ private String fileName;
|
|
|
+}
|