|
|
@@ -0,0 +1,108 @@
|
|
|
+package com.kxs.system.api.vo.kxsapp.school;
|
|
|
+
|
|
|
+import com.baomidou.mybatisplus.annotation.FieldFill;
|
|
|
+import com.baomidou.mybatisplus.annotation.IdType;
|
|
|
+import com.baomidou.mybatisplus.annotation.TableField;
|
|
|
+import com.baomidou.mybatisplus.annotation.TableId;
|
|
|
+import io.swagger.v3.oas.annotations.media.Schema;
|
|
|
+import lombok.Data;
|
|
|
+
|
|
|
+import java.math.BigDecimal;
|
|
|
+import java.time.LocalDateTime;
|
|
|
+
|
|
|
+@Data
|
|
|
+public class SchoolFirstMenuVO {
|
|
|
+ /**
|
|
|
+ * 主键ID
|
|
|
+ */
|
|
|
+ @Schema(description = "主键ID")
|
|
|
+ @TableId(type = IdType.AUTO)
|
|
|
+ private Integer id;
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 新增时间
|
|
|
+ */
|
|
|
+ @TableField(fill = FieldFill.INSERT)
|
|
|
+ @Schema(description = "新增时间")
|
|
|
+ private LocalDateTime createTime;
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 更新时间
|
|
|
+ */
|
|
|
+ @TableField(fill = FieldFill.UPDATE)
|
|
|
+ @Schema(description = "更新时间")
|
|
|
+ private LocalDateTime updateTime;
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 删除标记,0未删除,1已删除
|
|
|
+ */
|
|
|
+ @Schema(description = "删除标记,0未删除,1已删除")
|
|
|
+ private String delFlag;
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 版本
|
|
|
+ */
|
|
|
+ @Schema(description = "版本")
|
|
|
+ private Integer version;
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 分类名称
|
|
|
+ */
|
|
|
+ @Schema(description = "分类名称")
|
|
|
+ private String colName;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 老库分类标识
|
|
|
+ */
|
|
|
+ @Schema(description = "分类标识")
|
|
|
+ private String colId;
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 分类封面图
|
|
|
+ */
|
|
|
+ @Schema(description = "分类封面图")
|
|
|
+ private String colPicPath;
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 分类描述
|
|
|
+ */
|
|
|
+ @Schema(description = "分类描述")
|
|
|
+ private String colDetail;
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 父级ID
|
|
|
+ */
|
|
|
+ @Schema(description = "父级ID")
|
|
|
+ private Integer pid;
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 排序
|
|
|
+ */
|
|
|
+ @Schema(description = "排序")
|
|
|
+ private Integer sort;
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 是否开发 0否 1开放
|
|
|
+ */
|
|
|
+ @Schema(description = "是否开发 0否 1开放")
|
|
|
+ private Integer isOpen;
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 起始交易额查看权限
|
|
|
+ */
|
|
|
+ @Schema(description = "起始交易额查看权限")
|
|
|
+ private BigDecimal startAmount;
|
|
|
+ private int childCount;
|
|
|
+ private int isUpdate;
|
|
|
+}
|