You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
489 B
34 lines
489 B
package com.xmomen.module.member.model;
|
|
|
|
import lombok.Data;
|
|
|
|
import java.io.Serializable;
|
|
|
|
/**
|
|
* @author tanxinzheng
|
|
* @version 1.0.0
|
|
* @date 2017-3-29 0:27:52
|
|
*/
|
|
public
|
|
@Data
|
|
class MemberAddressQuery implements Serializable {
|
|
/**
|
|
* 主键
|
|
*/
|
|
private String id;
|
|
/**
|
|
* 包含主键集
|
|
*/
|
|
private String[] ids;
|
|
/**
|
|
* 排除主键集
|
|
*/
|
|
private String[] excludeIds;
|
|
|
|
/**
|
|
* 会员ID
|
|
*/
|
|
private String cdMemberId;
|
|
|
|
}
|