Browse Source
# Conflicts: # epmet-module/epmet-heart/epmet-heart-server/src/main/java/com/epmet/entity/VolunteerInfoEntity.java # epmet-module/epmet-heart/epmet-heart-server/src/main/java/com/epmet/service/impl/VolunteerInfoServiceImpl.java # epmet-user/epmet-user-server/src/main/java/com/epmet/controller/IcResiUserController.javamaster
49 changed files with 432 additions and 193 deletions
@ -0,0 +1,19 @@ |
|||||
|
package com.epmet.dto.form.heart; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
/** |
||||
|
* @Description |
||||
|
* @Author wangxianzhang |
||||
|
* @Date 2021/12/22 3:12 下午 |
||||
|
* @Version 1.0 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class VolunteerDemandServiceFormDTO { |
||||
|
|
||||
|
/** |
||||
|
* 组织ID |
||||
|
*/ |
||||
|
private String agencyId; |
||||
|
|
||||
|
} |
@ -0,0 +1,14 @@ |
|||||
|
-- 发布前执行 |
||||
|
alter table fact_volunteer_service_daily add column GRID_ID varchar(64) not null comment '网格ID' after CUSTOMER_ID; |
||||
|
alter table fact_volunteer_service_daily add column PID varchar(64) default '' comment 'pid网格父级ID' after RESI_SERVICE_TOTAL; |
||||
|
alter table fact_volunteer_service_daily add column PIDS varchar(255) default '' comment 'pid网格父级ID路径,包含PID' after PID; |
||||
|
|
||||
|
-- 发布后执行 |
||||
|
|
||||
|
delete from fact_volunteer_service_daily; |
||||
|
|
||||
|
alter table fact_volunteer_service_daily drop key uni_vsd; |
||||
|
|
||||
|
alter table fact_volunteer_service_daily |
||||
|
add constraint uni_vsd |
||||
|
unique (GRID_ID, DATE_ID, DEL_FLAG); |
@ -0,0 +1,21 @@ |
|||||
|
package com.epmet.dto.result; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
import java.util.List; |
||||
|
|
||||
|
/** |
||||
|
* @Author zxc |
||||
|
* @DateTime 2021/12/20 5:14 下午 |
||||
|
* @DESC |
||||
|
*/ |
||||
|
@Data |
||||
|
public class ResiBuzzIssueCategoryDTO implements Serializable { |
||||
|
|
||||
|
private static final long serialVersionUID = 5050318228251317747L; |
||||
|
|
||||
|
private String issueId; |
||||
|
|
||||
|
private List<String> cn; |
||||
|
} |
@ -1,21 +0,0 @@ |
|||||
package com.epmet.dto.form; |
|
||||
|
|
||||
import lombok.Data; |
|
||||
|
|
||||
import java.io.Serializable; |
|
||||
import java.util.List; |
|
||||
|
|
||||
/** |
|
||||
* @author zhaoqifeng |
|
||||
* @dscription |
|
||||
* @date 2021/6/9 16:31 |
|
||||
*/ |
|
||||
@Data |
|
||||
public class PatrolUploadDetailFormDTO implements Serializable { |
|
||||
private static final long serialVersionUID = 1527344810917196996L; |
|
||||
/** |
|
||||
* 巡查主记录id, 开始巡查反参 |
|
||||
*/ |
|
||||
private String staffPatrolRecId; |
|
||||
private List<PatrolUploadFormDTO> details; |
|
||||
} |
|
Binary file not shown.
Loading…
Reference in new issue