1 changed files with 43 additions and 0 deletions
@ -0,0 +1,43 @@ |
|||
package com.epmet.dto.screen.form; |
|||
|
|||
import com.epmet.commons.tools.validator.group.CustomerClientShowGroup; |
|||
import lombok.Data; |
|||
|
|||
import javax.validation.constraints.NotBlank; |
|||
import java.io.Serializable; |
|||
import java.util.ArrayList; |
|||
import java.util.List; |
|||
|
|||
/** |
|||
* @Author zxc |
|||
* @DateTime 2021/2/23 下午4:30 |
|||
*/ |
|||
@Data |
|||
public class ExtractDailyFormDTO implements Serializable { |
|||
|
|||
private static final long serialVersionUID = -3379342328836218599L; |
|||
|
|||
public interface ExtractDailyForm extends CustomerClientShowGroup {} |
|||
|
|||
/** |
|||
* 日期id: yyyyMMdd |
|||
*/ |
|||
private String dateId; |
|||
|
|||
/** |
|||
* 客户id |
|||
*/ |
|||
@NotBlank(message = "客户id不能为空", groups = { ExtractDailyForm.class }) |
|||
private String customerId; |
|||
|
|||
/** |
|||
* 当前客户所属的地区编码 |
|||
*/ |
|||
private String customerAreaCode = ""; |
|||
|
|||
/** |
|||
* 当前客户下的需要汇聚的子客户列表 |
|||
* 暂不使用 |
|||
*/ |
|||
private List<String> subCustomerIds = new ArrayList<>(); |
|||
} |
Loading…
Reference in new issue