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.

28 lines
533 B

package com.xmomen.module.base.model;
import java.io.Serializable;
import java.util.Date;
import org.springframework.web.bind.annotation.RequestParam;
import lombok.Data;
public @Data class CouponActivityAddress implements Serializable {
// 收货人姓名
private String consignmentName;
// 收货人电话
private String consignmentPhone;
// 收货人地址
private String consignmentAddress;
// 发货时间
private Date sendTime;
// 发货数量
private Integer sendCount;
}