24 changed files with 334 additions and 12 deletions
@ -0,0 +1,26 @@ |
|||||
|
package com.epmet.dto.form; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
|
||||
|
/** |
||||
|
* @Author sun |
||||
|
* @Description 修改各业务表customerId(兼容党群e事通已上线客户,将已有客户Id同步到第三方问题)-接口入参 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class ModifyCustomerFormDTO implements Serializable { |
||||
|
|
||||
|
private static final long serialVersionUID = -6547893374373422628L; |
||||
|
|
||||
|
/** |
||||
|
* 待修改的客户Id |
||||
|
* */ |
||||
|
private String oldCustomerId; |
||||
|
|
||||
|
/** |
||||
|
* 修改后的客户Id |
||||
|
*/ |
||||
|
private String newCustonerId; |
||||
|
|
||||
|
} |
@ -0,0 +1,38 @@ |
|||||
|
package com.epmet.dto.form; |
||||
|
|
||||
|
import com.epmet.commons.tools.validator.group.CustomerClientShowGroup; |
||||
|
import lombok.Data; |
||||
|
|
||||
|
import javax.validation.constraints.NotBlank; |
||||
|
import java.io.Serializable; |
||||
|
|
||||
|
/** |
||||
|
* @Description 单客户-获取用户最近访问网格-接口入参 |
||||
|
* @Auth sun |
||||
|
*/ |
||||
|
@Data |
||||
|
public class LatestGridInfoFormDTO implements Serializable { |
||||
|
private static final long serialVersionUID = -6534841370041338474L; |
||||
|
|
||||
|
public interface AddUserInternalGroup { |
||||
|
} |
||||
|
public interface AddUserShowGroup extends CustomerClientShowGroup { |
||||
|
} |
||||
|
|
||||
|
/** |
||||
|
* 小程序绑定的appId |
||||
|
*/ |
||||
|
@NotBlank(message = "数据来源不能为空", groups = {LatestGridInfoFormDTO.AddUserInternalGroup.class, LatestGridInfoFormDTO.AddUserShowGroup.class}) |
||||
|
private String appId; |
||||
|
|
||||
|
/** |
||||
|
* 根据appId查询到的客户Id |
||||
|
*/ |
||||
|
private String customerId; |
||||
|
|
||||
|
/** |
||||
|
* token中userId |
||||
|
*/ |
||||
|
private String userId; |
||||
|
|
||||
|
} |
Loading…
Reference in new issue