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.
21 lines
421 B
21 lines
421 B
package com.xmomen.module.pick.model;
|
|
|
|
import java.io.Serializable;
|
|
import java.math.BigDecimal;
|
|
|
|
import lombok.Data;
|
|
|
|
public @Data
|
|
class PickVo implements Serializable{
|
|
// 拣货重量
|
|
private BigDecimal pickWeight;
|
|
// 拣货价格
|
|
private BigDecimal pickPrice;
|
|
// 拣货支付类型
|
|
private Integer pickPayType;
|
|
// 拣货箱价
|
|
private BigDecimal pickCasePrice;
|
|
// 优惠券编号
|
|
private String couponNo;
|
|
}
|