package com.yeshi.fanli.dto.msg;
|
|
/**
|
* 系统赠送
|
*
|
* @author Administrator
|
*
|
*/
|
public class MsgOtherSystemGiveDTO {
|
private String name;// 赠送名称
|
private Integer count;// 赠送数量
|
private String reason;// 赠送原因
|
private Integer orderType;// 订单类型
|
private String orderId;// 订单号
|
private String desc;// 说明
|
|
public String getName() {
|
return name;
|
}
|
|
public void setName(String name) {
|
this.name = name;
|
}
|
|
public Integer getCount() {
|
return count;
|
}
|
|
public void setCount(Integer count) {
|
this.count = count;
|
}
|
|
public String getReason() {
|
return reason;
|
}
|
|
public void setReason(String reason) {
|
this.reason = reason;
|
}
|
|
public Integer getOrderType() {
|
return orderType;
|
}
|
|
public void setOrderType(Integer orderType) {
|
this.orderType = orderType;
|
}
|
|
public String getOrderId() {
|
return orderId;
|
}
|
|
public void setOrderId(String orderId) {
|
this.orderId = orderId;
|
}
|
|
public String getDesc() {
|
return desc;
|
}
|
|
public void setDesc(String desc) {
|
this.desc = desc;
|
}
|
|
}
|