23 changed files with 111 additions and 28 deletions
@ -0,0 +1,61 @@ |
|||
/** |
|||
* 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.epmet.dto.result; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* @Author sun |
|||
* @Description 社会组织列表查询 |
|||
**/ |
|||
@Data |
|||
public class SocietyOrgListResultDTO implements Serializable { |
|||
private static final long serialVersionUID = 1L; |
|||
|
|||
//所属组织Id
|
|||
private String agencyId; |
|||
//社会组织Id
|
|||
private String societyId; |
|||
//社会组织名称
|
|||
private String societyName; |
|||
//服务事项
|
|||
private String serviceMatters; |
|||
//负责人姓名
|
|||
private String personInCharge; |
|||
//负责人电话
|
|||
private String mobile; |
|||
//起始服务时间
|
|||
//@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
|||
//private Date serviceStartTime;
|
|||
private String serviceStartTime; |
|||
//终止服务时间
|
|||
private String serviceEndTime; |
|||
//绑定管理员[组织下Id录入的工作人员]
|
|||
private String adminStaffId; |
|||
//绑定管理员[组织下录入的工作人员]姓名
|
|||
private String adminStaffName = ""; |
|||
//地址
|
|||
private String address; |
|||
//经度
|
|||
private String longitude; |
|||
//维度
|
|||
private String dimension; |
|||
|
|||
} |
Loading…
Reference in new issue