32 changed files with 213 additions and 60 deletions
@ -0,0 +1,28 @@ |
|||||
|
package com.epmet.dataaggre.dto.epmetuser.form; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
import javax.validation.constraints.NotBlank; |
||||
|
import java.io.Serializable; |
||||
|
|
||||
|
/** |
||||
|
* @Description |
||||
|
* @Author zhaoqifeng |
||||
|
* @Date 2021/8/27 10:40 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class RoleListFormDTO implements Serializable { |
||||
|
private static final long serialVersionUID = -3331980620366027460L; |
||||
|
/** |
||||
|
* 客户ID |
||||
|
*/ |
||||
|
private String customerId; |
||||
|
/** |
||||
|
* 是否包括我(1 是,0 否) |
||||
|
*/ |
||||
|
private String includeMe; |
||||
|
/** |
||||
|
* 用户ID |
||||
|
*/ |
||||
|
private String userId; |
||||
|
} |
||||
@ -0,0 +1,24 @@ |
|||||
|
package com.epmet.constant; |
||||
|
|
||||
|
|
||||
|
/** |
||||
|
* @author yinzuomei |
||||
|
* @dscription |
||||
|
* @date 2021/08/27 14:22 |
||||
|
*/ |
||||
|
public interface UserMessageTypeConstant { |
||||
|
|
||||
|
//上传下达
|
||||
|
/** |
||||
|
* 工作端发送消息,通知接收人 |
||||
|
*/ |
||||
|
String INFO="info"; |
||||
|
|
||||
|
/** |
||||
|
* 居民端提交热心居民申请,通知网格长 |
||||
|
*/ |
||||
|
String WARMHEARTED_APPLY="warmhearted_apply"; |
||||
|
|
||||
|
|
||||
|
|
||||
|
} |
||||
Loading…
Reference in new issue