package cc.mrbird.febs.mall.vo.clothes;
|
|
import lombok.Data;
|
|
import java.math.BigDecimal;
|
import java.util.Date;
|
|
@Data
|
public class AdminClothesOrderListVo {
|
|
private Long id;
|
private Long typeId;
|
|
private String memberName;
|
private String typeName;
|
private String typeImage;
|
|
private String orderNo;
|
private Date orderTime;
|
private Integer goodsCnt;
|
private Integer status;
|
private String remark;
|
|
|
private Date payTime;
|
private String payMethod;
|
private String payOrderNo;
|
private Integer payResult;
|
|
private Integer deliveryState;
|
|
private BigDecimal amount;
|
private BigDecimal discountAmount;
|
private BigDecimal carriage;
|
private BigDecimal realAmount;
|
|
private Integer commentState;
|
}
|