| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102 |
- package com.goafanti.order.bo;
- import java.math.BigDecimal;
- import java.util.Date;
- public class JtOrderResultDetail {
- private String orderNo;
- private Integer commodityType;
- private Date createTime;
- private BigDecimal orderAmount;
- private String commodityName;
- private String sellerId;
- private String sellerName;
- private String sellerMobile;
- private String buyerId;
- private String buyerName;
- private String buyerMobile;
- private String commodityId;
- private String ImgUrl;
-
- public String getCommodityId() {
- return commodityId;
- }
- public void setCommodityId(String commodityId) {
- this.commodityId = commodityId;
- }
- public String getOrderNo() {
- return orderNo;
- }
- public void setOrderNo(String orderNo) {
- this.orderNo = orderNo;
- }
- public Integer getCommodityType() {
- return commodityType;
- }
- public void setCommodityType(Integer commodityType) {
- this.commodityType = commodityType;
- }
- public Date getCreateTime() {
- return createTime;
- }
- public void setCreateTime(Date createTime) {
- this.createTime = createTime;
- }
- public BigDecimal getOrderAmount() {
- return orderAmount;
- }
- public void setOrderAmount(BigDecimal orderAmount) {
- this.orderAmount = orderAmount;
- }
- public String getCommodityName() {
- return commodityName;
- }
- public void setCommodityName(String commodityName) {
- this.commodityName = commodityName;
- }
- public String getSellerId() {
- return sellerId;
- }
- public void setSellerId(String sellerId) {
- this.sellerId = sellerId;
- }
- public String getSellerName() {
- return sellerName;
- }
- public void setSellerName(String sellerName) {
- this.sellerName = sellerName;
- }
- public String getSellerMobile() {
- return sellerMobile;
- }
- public void setSellerMobile(String sellerMobile) {
- this.sellerMobile = sellerMobile;
- }
- public String getBuyerId() {
- return buyerId;
- }
- public void setBuyerId(String buyerId) {
- this.buyerId = buyerId;
- }
- public String getBuyerName() {
- return buyerName;
- }
- public void setBuyerName(String buyerName) {
- this.buyerName = buyerName;
- }
- public String getBuyerMobile() {
- return buyerMobile;
- }
- public void setBuyerMobile(String buyerMobile) {
- this.buyerMobile = buyerMobile;
- }
- public String getImgUrl() {
- return ImgUrl;
- }
- public void setImgUrl(String imgUrl) {
- ImgUrl = imgUrl;
- }
-
- }
|