13 changed files with 309 additions and 14 deletions
@ -0,0 +1,37 @@ |
|||||
|
package com.epmet.dto.form; |
||||
|
|
||||
|
import com.epmet.commons.tools.dto.form.PageFormDTO; |
||||
|
import lombok.Data; |
||||
|
|
||||
|
import javax.validation.constraints.NotNull; |
||||
|
import java.io.Serializable; |
||||
|
|
||||
|
/** |
||||
|
* @program: epmet-cloud |
||||
|
* @description: |
||||
|
* @author: wangtong |
||||
|
* @create: 2022-06-15 17:21 |
||||
|
**/ |
||||
|
@Data |
||||
|
public class RecordRewardFormDTO extends PageFormDTO implements Serializable { |
||||
|
|
||||
|
/** |
||||
|
* 客户ID |
||||
|
*/ |
||||
|
private String customerId; |
||||
|
|
||||
|
/** |
||||
|
*积分申请房屋ID |
||||
|
*/ |
||||
|
private String houseId; |
||||
|
|
||||
|
/** |
||||
|
*业务编码:积分奖励point_reward;积分扣罚point_fine |
||||
|
*/ |
||||
|
@NotNull(message = "业务编码不可为空") |
||||
|
private String businessCode; |
||||
|
|
||||
|
|
||||
|
|
||||
|
|
||||
|
} |
@ -0,0 +1,51 @@ |
|||||
|
package com.epmet.dto.form; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
import java.util.List; |
||||
|
|
||||
|
/** |
||||
|
* @program: epmet-cloud |
||||
|
* @description: |
||||
|
* @author: wangtong |
||||
|
* @create: 2022-06-15 17:21 |
||||
|
**/ |
||||
|
@Data |
||||
|
public class SubmitRewardFormDTO implements Serializable { |
||||
|
|
||||
|
/** |
||||
|
* 客户ID |
||||
|
*/ |
||||
|
private String customerId; |
||||
|
|
||||
|
/** |
||||
|
* 工作人员ID |
||||
|
*/ |
||||
|
private String staffId; |
||||
|
|
||||
|
/** |
||||
|
*积分申请房屋ID |
||||
|
*/ |
||||
|
private String houseId; |
||||
|
|
||||
|
/** |
||||
|
*业务编码:积分奖励point_reward;积分扣罚point_fine |
||||
|
*/ |
||||
|
private String businessCode; |
||||
|
/** |
||||
|
*规则ID集合 |
||||
|
*/ |
||||
|
private List<String> ruleIdList; |
||||
|
|
||||
|
/** |
||||
|
*附件url集合 |
||||
|
*/ |
||||
|
private List<String> annexList; |
||||
|
/** |
||||
|
*备注说明 |
||||
|
*/ |
||||
|
private String statement; |
||||
|
|
||||
|
|
||||
|
} |
Loading…
Reference in new issue