12 changed files with 391 additions and 5 deletions
@ -0,0 +1,75 @@ |
|||
/** |
|||
* 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.form; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import javax.validation.constraints.NotBlank; |
|||
import java.io.Serializable; |
|||
import java.util.Date; |
|||
|
|||
|
|||
/** |
|||
* 企业信息完善表单 |
|||
* |
|||
* @author elink elink@elink-cn.com |
|||
* @since v1.0.0 2020-02-28 |
|||
*/ |
|||
@Data |
|||
public class EnterpriseInfoFormDTO implements Serializable { |
|||
|
|||
private static final long serialVersionUID = 6426517740744532420L; |
|||
|
|||
/** |
|||
* 主键 |
|||
*/ |
|||
@NotBlank(message = "ID不能为空") |
|||
private String id; |
|||
|
|||
/** |
|||
* 用户id |
|||
*/ |
|||
private String userId; |
|||
|
|||
/** |
|||
* 法定代表人 |
|||
*/ |
|||
private String legalPerson; |
|||
|
|||
/** |
|||
* 注册资金(万元) |
|||
*/ |
|||
private Integer registeredCapital; |
|||
|
|||
/** |
|||
* 从业人数 |
|||
*/ |
|||
private Integer employedPopulation; |
|||
|
|||
/** |
|||
* 所属行业 |
|||
*/ |
|||
private String industry; |
|||
|
|||
/** |
|||
* 经营范围 |
|||
*/ |
|||
private String businessScope; |
|||
|
|||
|
|||
} |
|||
@ -0,0 +1,112 @@ |
|||
/** |
|||
* 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 javax.validation.constraints.NotBlank; |
|||
import java.io.Serializable; |
|||
import java.util.Date; |
|||
|
|||
|
|||
/** |
|||
* 查询企业信息结果 |
|||
* |
|||
* @author elink elink@elink-cn.com |
|||
* @since v1.0.0 2020-02-28 |
|||
*/ |
|||
@Data |
|||
public class EnterpriseInfoResultDTO 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 Integer registeredCapital; |
|||
|
|||
/** |
|||
* 从业人数 |
|||
*/ |
|||
private Integer employedPopulation; |
|||
|
|||
/** |
|||
* 所属行业 |
|||
*/ |
|||
private String industry; |
|||
|
|||
/** |
|||
* 经营范围 |
|||
*/ |
|||
private String businessScope; |
|||
|
|||
/** |
|||
* 居住网格id |
|||
*/ |
|||
private Long deptId; |
|||
/** |
|||
* 所有部门名称 |
|||
*/ |
|||
private String allDeptNames; |
|||
|
|||
} |
|||
Loading…
Reference in new issue