27 changed files with 784 additions and 37 deletions
@ -0,0 +1,20 @@ |
|||
package com.epmet.dto.extract.form; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* @Description |
|||
* @ClassName GridHeartedFormDTO |
|||
* @Auth wangc |
|||
* @Date 2020-09-20 12:42 |
|||
*/ |
|||
@Data |
|||
public class GridHeartedFormDTO implements Serializable { |
|||
private static final long serialVersionUID = 9069263069122734316L; |
|||
|
|||
private String userId; |
|||
|
|||
private String gridId; |
|||
} |
@ -0,0 +1,41 @@ |
|||
package com.epmet.dto.group.result; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
import java.util.Date; |
|||
|
|||
/** |
|||
* @Description |
|||
* @ClassName ExtractGroupMemberActionRecordResultDTO |
|||
* @Auth wangc |
|||
* @Date 2020-09-18 21:18 |
|||
*/ |
|||
@Data |
|||
public class ExtractGroupMemberActionRecordResultDTO implements Serializable { |
|||
private static final long serialVersionUID = -74883228267461785L; |
|||
private String customerId; |
|||
|
|||
private String groupId; |
|||
|
|||
private String memberId; |
|||
|
|||
private String leaderFlag; |
|||
|
|||
private String dateId; |
|||
|
|||
private String weekId; |
|||
|
|||
private String monthId; |
|||
|
|||
private String quarterId; |
|||
|
|||
private String yearId; |
|||
|
|||
private Date joinDate; |
|||
|
|||
/** |
|||
* 目前只有join leader也是join |
|||
* */ |
|||
private String actionCode; |
|||
} |
@ -0,0 +1,36 @@ |
|||
package com.epmet.dto.stats.result; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* @Description |
|||
* @ClassName GridAttributesResultDTO |
|||
* @Auth wangc |
|||
* @Date 2020-09-20 12:50 |
|||
*/ |
|||
@Data |
|||
public class GridAttributesResultDTO implements Serializable { |
|||
private static final long serialVersionUID = 466974582608407121L; |
|||
|
|||
/** |
|||
* 网格ID |
|||
*/ |
|||
private String gridId; |
|||
|
|||
/** |
|||
* 网格所属机关ID |
|||
*/ |
|||
private String agencyId; |
|||
|
|||
/** |
|||
* 机关的上级ID |
|||
*/ |
|||
private String parentId; |
|||
|
|||
/** |
|||
* 所有上级Id |
|||
* */ |
|||
private String pids; |
|||
} |
Loading…
Reference in new issue