forked from rongchao/epmet-cloud-rizhao
19 changed files with 317 additions and 6 deletions
@ -0,0 +1,12 @@ |
|||||
|
package com.epmet.constant; |
||||
|
|
||||
|
/** |
||||
|
* @Description 机构员工的常量 |
||||
|
* @IntefaceName StaffAgencyConstant |
||||
|
* @Author wangc |
||||
|
* @date 2020.04.23 11:25 |
||||
|
*/ |
||||
|
public interface StaffAgencyConstant { |
||||
|
|
||||
|
String QUERY_LATEST_GRID_INFO_FAILED = "查询上一次登录的网格信息失败"; |
||||
|
} |
||||
@ -0,0 +1,28 @@ |
|||||
|
package com.epmet.dto.form; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
import javax.validation.constraints.NotBlank; |
||||
|
import java.io.Serializable; |
||||
|
|
||||
|
/** |
||||
|
* @author: wangc |
||||
|
* @description: |
||||
|
* @date: Created in 2020-04-22 18:19 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class LatestGridFormDTO implements Serializable { |
||||
|
private static final long serialVersionUID = 1L; |
||||
|
|
||||
|
/** |
||||
|
* 客户Id |
||||
|
* */ |
||||
|
@NotBlank(message = "客户Id不能为空") |
||||
|
private String customerId; |
||||
|
|
||||
|
/** |
||||
|
* 工作人员Id |
||||
|
* */ |
||||
|
@NotBlank(message = "工作人员Id不能为空") |
||||
|
private String staffId; |
||||
|
} |
||||
Loading…
Reference in new issue