From bfa408543a200e5c692150b4a351050eac13ad21 Mon Sep 17 00:00:00 2001 From: Jackwang Date: Thu, 4 Nov 2021 16:31:23 +0800 Subject: [PATCH] =?UTF-8?q?=E7=BD=91=E6=A0=BC=E9=98=9F=E4=BC=8D=E5=88=86?= =?UTF-8?q?=E7=B1=BB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../esua/epdc/dto/GridMemberCategoryDTO.java | 92 +++++++++++++++++++ .../elink/esua/epdc/dto/GridMemberDTO.java | 5 + 2 files changed, 97 insertions(+) create mode 100644 epdc-cloud-admin-client/src/main/java/com/elink/esua/epdc/dto/GridMemberCategoryDTO.java diff --git a/epdc-cloud-admin-client/src/main/java/com/elink/esua/epdc/dto/GridMemberCategoryDTO.java b/epdc-cloud-admin-client/src/main/java/com/elink/esua/epdc/dto/GridMemberCategoryDTO.java new file mode 100644 index 0000000..6ee1873 --- /dev/null +++ b/epdc-cloud-admin-client/src/main/java/com/elink/esua/epdc/dto/GridMemberCategoryDTO.java @@ -0,0 +1,92 @@ +/** + * Copyright 2018 人人开源 https://www.renren.io + *

+ * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + *

+ * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + *

+ * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +package com.elink.esua.epdc.dto; + +import lombok.Data; + +import java.io.Serializable; +import java.util.Date; + + +/** + * 网格队伍分类 + * + * @author qu qu@elink-cn.com + * @since v1.0.0 2021-11-04 + */ +@Data +public class GridMemberCategoryDTO implements Serializable { + + private static final long serialVersionUID = 1L; + + /** + * 标识号 + */ + private Long id; + + /** + * 类别名称 + */ + private String typeName; + + /** + * 类别编码 + */ + private String typeCode; + + /** + * 排序 + */ + private Integer sort; + + /** + * 图片地址 + */ + private String imgUrl; + + /** + * 启用标识 0-启用,1-未启用 + */ + private String bannerFlag; + + /** + * 删除标识 0:未删除 1:删除 + */ + private Integer delFlag; + + /** + * 创建者 + */ + private Long creator; + + /** + * 创建时间 + */ + private Date createDate; + + /** + * 更新者 + */ + private Long updater; + + /** + * 更新时间 + */ + private Date updateDate; + +} \ No newline at end of file diff --git a/epdc-cloud-admin-client/src/main/java/com/elink/esua/epdc/dto/GridMemberDTO.java b/epdc-cloud-admin-client/src/main/java/com/elink/esua/epdc/dto/GridMemberDTO.java index 0111efe..3441699 100644 --- a/epdc-cloud-admin-client/src/main/java/com/elink/esua/epdc/dto/GridMemberDTO.java +++ b/epdc-cloud-admin-client/src/main/java/com/elink/esua/epdc/dto/GridMemberDTO.java @@ -74,6 +74,11 @@ public class GridMemberDTO implements Serializable { */ private String mobile; + /** + * 类别编码 + */ + private String categoryCode; + /** * 所属网格名称 */