1 changed files with 29 additions and 0 deletions
@ -0,0 +1,29 @@ |
|||||
|
package cn.chjyj.szwh.dto; |
||||
|
|
||||
|
import java.math.BigDecimal; |
||||
|
|
||||
|
/** |
||||
|
* 订单商品信息 DTO |
||||
|
* 数据传输对象实体 |
||||
|
* 报表统计用 |
||||
|
*/ |
||||
|
public class OrderGoodsDetailDTO { |
||||
|
private String entrust_islicode; |
||||
|
private BigDecimal totalMoney; |
||||
|
|
||||
|
public String getEntrust_islicode() { |
||||
|
return entrust_islicode; |
||||
|
} |
||||
|
|
||||
|
public void setEntrust_islicode(String entrust_islicode) { |
||||
|
this.entrust_islicode = entrust_islicode; |
||||
|
} |
||||
|
|
||||
|
public BigDecimal getTotalMoney() { |
||||
|
return totalMoney; |
||||
|
} |
||||
|
|
||||
|
public void setTotalMoney(BigDecimal totalMoney) { |
||||
|
this.totalMoney = totalMoney; |
||||
|
} |
||||
|
} |
||||
Loading…
Reference in new issue