21 changed files with 284 additions and 48 deletions
@ -0,0 +1,47 @@ |
|||||
|
/** |
||||
|
* 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 com.epmet.dto.CustomerGridDTO; |
||||
|
import com.epmet.dto.CustomerStaffGridDTO; |
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
import java.util.List; |
||||
|
|
||||
|
|
||||
|
/** |
||||
|
* 根据网格ID查询网格信息、查询网格下所有工作人员列表-接口返参 |
||||
|
* |
||||
|
* @author sun |
||||
|
*/ |
||||
|
@Data |
||||
|
public class AgencyAndStaffsResultDTO implements Serializable { |
||||
|
|
||||
|
private static final long serialVersionUID = 1L; |
||||
|
|
||||
|
/** |
||||
|
* 网格基本信息 |
||||
|
*/ |
||||
|
private CustomerGridDTO customerGridDTO; |
||||
|
/** |
||||
|
* 网格下工作人员列表 |
||||
|
*/ |
||||
|
private List<CustomerStaffGridDTO> staffList; |
||||
|
|
||||
|
} |
@ -0,0 +1,13 @@ |
|||||
|
package com.epmet.constant; |
||||
|
|
||||
|
/** |
||||
|
* @author sun |
||||
|
* @dscription |
||||
|
*/ |
||||
|
public interface CustomerGridConstant { |
||||
|
|
||||
|
/** |
||||
|
* 根据网格Id未查询到网格信息 |
||||
|
*/ |
||||
|
String SELECT_EXCEPTION = "根据网格Id未查询到网格信息"; |
||||
|
} |
@ -0,0 +1,10 @@ |
|||||
|
package com.epmet.constant; |
||||
|
|
||||
|
/** |
||||
|
* @author sun |
||||
|
* @dscription |
||||
|
*/ |
||||
|
public interface ResiWarmheartedConstant { |
||||
|
|
||||
|
String SELECT_EXCEPTION = "根据网格Id查询数据失败"; |
||||
|
} |
Loading…
Reference in new issue