123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124 |
- package com.caimei.modules.bulkpurchase.entity;
- import com.thinkgem.jeesite.common.persistence.DataEntity;
- import java.math.BigDecimal;
- import java.util.Date;
- /**
- * 订单列表的导出实体类
- * @author zcp
- * @version 2018-04-17
- */
- public class BpOrderVo extends DataEntity<BpOrderVo> {
- private static final long serialVersionUID = 1L;
- private String stagesFlag; //分期标志
- private Date orderTime; //订单时间
- private Integer orderId; // 订单ID
- private String no; // 订单号
- private String payTotalFee; // 实付总额(应付)
- private String name; //会所名
- private String received; //已收
- private String uncollected; //未收
- private String shouldPayShop; //应付供应商合计
- private String unPayShop; //未付供应商合计
- private String alreadyPayCm; //采美佣金(已付采美)
- private String stagesNum; //分期才有第几期
- public Date getOrderTime() {
- return orderTime;
- }
- public void setOrderTime(Date orderTime) {
- this.orderTime = orderTime;
- }
- public Integer getOrderId() {
- return orderId;
- }
- public void setOrderId(Integer orderId) {
- this.orderId = orderId;
- }
- public String getNo() {
- return no;
- }
- public void setNo(String no) {
- this.no = no;
- }
- public String getPayTotalFee() {
- return payTotalFee;
- }
- public void setPayTotalFee(String payTotalFee) {
- this.payTotalFee = payTotalFee;
- }
- public String getName() {
- return name;
- }
- public void setName(String name) {
- this.name = name;
- }
- public String getReceived() {
- return received;
- }
- public void setReceived(String received) {
- this.received = received;
- }
- public String getUncollected() {
- return uncollected;
- }
- public void setUncollected(String uncollected) {
- this.uncollected = uncollected;
- }
- public String getShouldPayShop() {
- return shouldPayShop;
- }
- public void setShouldPayShop(String shouldPayShop) {
- this.shouldPayShop = shouldPayShop;
- }
- public String getUnPayShop() {
- return unPayShop;
- }
- public void setUnPayShop(String unPayShop) {
- this.unPayShop = unPayShop;
- }
- public String getAlreadyPayCm() {
- return alreadyPayCm;
- }
- public void setAlreadyPayCm(String alreadyPayCm) {
- this.alreadyPayCm = alreadyPayCm;
- }
- public String getStagesNum() {
- return stagesNum;
- }
- public void setStagesNum(String stagesNum) {
- this.stagesNum = stagesNum;
- }
- public String getStagesFlag() {
- return stagesFlag;
- }
- public void setStagesFlag(String stagesFlag) {
- this.stagesFlag = stagesFlag;
- }
- }
|