28 changed files with 694 additions and 259 deletions
@ -1 +1 @@ |
|||||
Subproject commit c0f1c78ecd8b361e58ce19acd2c37b71af0d6d3c |
Subproject commit 0827892c5f98b395d5f332eec0d4bbd9ba02e9bf |
||||
@ -0,0 +1,58 @@ |
|||||
|
/** |
||||
|
* Copyright 2018 人人开源 https://www.renren.io
|
||||
|
* <p> |
||||
|
* 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. |
||||
|
* <p> |
||||
|
* 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. |
||||
|
* <p> |
||||
|
* You should have received a copy of the GNU General Public License |
||||
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
*/ |
||||
|
|
||||
|
package com.elink.esua.epdc.custom.dto.suggestion; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
import java.util.ArrayList; |
||||
|
import java.util.List; |
||||
|
|
||||
|
|
||||
|
/** |
||||
|
* 建议类别表 |
||||
|
* |
||||
|
* @author qu qu@elink-cn.com |
||||
|
* @since v1.0.0 2021-09-14 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class TypeNode implements Serializable { |
||||
|
|
||||
|
private static final long serialVersionUID = 1L; |
||||
|
|
||||
|
/** |
||||
|
* 主键 |
||||
|
*/ |
||||
|
private Long value; |
||||
|
|
||||
|
/** |
||||
|
* 名称 |
||||
|
*/ |
||||
|
private String label; |
||||
|
|
||||
|
/** |
||||
|
* 上级ID |
||||
|
*/ |
||||
|
private Long pid; |
||||
|
|
||||
|
/** |
||||
|
* 子级集合 |
||||
|
*/ |
||||
|
private List<TypeNode> children = new ArrayList<>(); |
||||
|
|
||||
|
} |
||||
@ -1,111 +0,0 @@ |
|||||
/** |
|
||||
* Copyright 2018 人人开源 https://www.renren.io
|
|
||||
* <p> |
|
||||
* 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. |
|
||||
* <p> |
|
||||
* 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. |
|
||||
* <p> |
|
||||
* You should have received a copy of the GNU General Public License |
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
||||
*/ |
|
||||
|
|
||||
package com.elink.esua.epdc.dto.enterprise.result; |
|
||||
|
|
||||
import lombok.Data; |
|
||||
|
|
||||
import java.io.Serializable; |
|
||||
|
|
||||
|
|
||||
/** |
|
||||
* 查询企业信息结果 |
|
||||
* |
|
||||
* @author elink elink@elink-cn.com |
|
||||
* @since v1.0.0 2020-02-28 |
|
||||
*/ |
|
||||
@Data |
|
||||
public class EnterpriseInfoUpdateResultDTO implements Serializable { |
|
||||
|
|
||||
private static final long serialVersionUID = 6426517740744532420L; |
|
||||
|
|
||||
/** |
|
||||
* 主键 |
|
||||
*/ |
|
||||
private String id; |
|
||||
|
|
||||
/** |
|
||||
* 用户id |
|
||||
*/ |
|
||||
private String userId; |
|
||||
|
|
||||
/** |
|
||||
* 用户姓名 |
|
||||
*/ |
|
||||
private String realName; |
|
||||
|
|
||||
/** |
|
||||
* 性别 0女 1男 |
|
||||
*/ |
|
||||
private String sex; |
|
||||
|
|
||||
/** |
|
||||
* 联系电话 |
|
||||
*/ |
|
||||
private String mobile; |
|
||||
|
|
||||
/** |
|
||||
* 企业名称 |
|
||||
*/ |
|
||||
private String enterpriseName; |
|
||||
|
|
||||
/** |
|
||||
* 统一社会信用代码 |
|
||||
*/ |
|
||||
private String uniformSocialCreditCode; |
|
||||
|
|
||||
/** |
|
||||
* 企业地址 |
|
||||
*/ |
|
||||
private String enterpriseAddress; |
|
||||
|
|
||||
/** |
|
||||
* 法定代表人 |
|
||||
*/ |
|
||||
private String legalPerson; |
|
||||
|
|
||||
/** |
|
||||
* 注册资金(万元) |
|
||||
*/ |
|
||||
private String registeredCapital; |
|
||||
|
|
||||
/** |
|
||||
* 从业人数 |
|
||||
*/ |
|
||||
private String employedPopulation; |
|
||||
|
|
||||
/** |
|
||||
* 所属行业 |
|
||||
*/ |
|
||||
private String industry; |
|
||||
|
|
||||
/** |
|
||||
* 经营范围 |
|
||||
*/ |
|
||||
private String businessScope; |
|
||||
|
|
||||
/** |
|
||||
* 居住网格id |
|
||||
*/ |
|
||||
private Long deptId; |
|
||||
|
|
||||
/** |
|
||||
* 所有部门名称 |
|
||||
*/ |
|
||||
private String deptName; |
|
||||
|
|
||||
} |
|
||||
Loading…
Reference in new issue