2024-01-15 10:38:50 +08:00
|
|
|
package com.jsowell.pile.dto;
|
|
|
|
|
|
2024-01-15 11:51:21 +08:00
|
|
|
import com.jsowell.common.core.domain.BaseEntity;
|
2024-01-15 10:38:50 +08:00
|
|
|
import lombok.*;
|
|
|
|
|
|
2024-01-20 14:09:09 +08:00
|
|
|
import java.util.List;
|
|
|
|
|
|
2024-01-15 10:38:50 +08:00
|
|
|
@Getter
|
|
|
|
|
@Setter
|
|
|
|
|
@NoArgsConstructor
|
|
|
|
|
@AllArgsConstructor
|
|
|
|
|
@Builder
|
2024-01-15 11:51:21 +08:00
|
|
|
public class MemberGroupDTO extends BaseEntity {
|
2024-02-20 16:49:54 +08:00
|
|
|
private static final long serialVersionUID = -6031339077986642598L;
|
2024-01-15 11:51:21 +08:00
|
|
|
private int pageSize;
|
|
|
|
|
private int pageNum;
|
2024-01-15 10:38:50 +08:00
|
|
|
private String phoneNumber;
|
|
|
|
|
|
|
|
|
|
private String groupCode;
|
2024-01-20 14:09:09 +08:00
|
|
|
|
|
|
|
|
private List<String> merchantIdList;
|
2024-02-23 15:06:29 +08:00
|
|
|
|
|
|
|
|
private String stationId;
|
2024-02-26 14:39:10 +08:00
|
|
|
|
|
|
|
|
private String memberId;
|
2024-03-11 11:08:48 +08:00
|
|
|
|
|
|
|
|
private String vinCode;
|
2024-01-15 10:38:50 +08:00
|
|
|
}
|