| | |
| | | import javax.persistence.JoinColumn;
|
| | | import javax.persistence.ManyToOne;
|
| | | import javax.persistence.Table;
|
| | | import javax.persistence.Transient;
|
| | |
|
| | | import org.yeshi.utils.mybatis.Column;
|
| | |
|
| | |
| | | @Expose
|
| | | private Integer resultCode;// 第三方平台订单爬取结果
|
| | |
|
| | | @Transient
|
| | | private Integer total; |
| | | @Transient
|
| | | private Integer totalPass; |
| | | @Transient
|
| | | private Integer totalReject; |
| | | |
| | | |
| | | public Integer getResultCode() {
|
| | | return resultCode;
|
| | | }
|
| | |
| | | this.order = order;
|
| | | }
|
| | |
|
| | | public Integer getTotal() {
|
| | | return total;
|
| | | }
|
| | |
|
| | | public void setTotal(Integer total) {
|
| | | this.total = total;
|
| | | }
|
| | |
|
| | | public Integer getTotalPass() {
|
| | | return totalPass;
|
| | | }
|
| | |
|
| | | public void setTotalPass(Integer totalPass) {
|
| | | this.totalPass = totalPass;
|
| | | }
|
| | |
|
| | | public Integer getTotalReject() {
|
| | | return totalReject;
|
| | | }
|
| | |
|
| | | public void setTotalReject(Integer totalReject) {
|
| | | this.totalReject = totalReject;
|
| | | }
|
| | |
|
| | | }
|