123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120 |
- package com.bgy.autosale.payutil;
- import java.io.Serializable;
- /**
- * @author whw
- * @time 2019/5/22
- * @Description 作用
- */
- public class CoinOrdeBean implements Serializable {
- /**
- * sn : 123455
- * name : 棉花糖
- * clientId : 71963777bd63e0f0a5b6490f04bf1ae4
- * price : 123
- * payType : 0
- * status : 0
- */
- private String sn;
- private String name;
- private String clientId;
- private double price;
- private int payType;
- private String createDate;
- private String status;
- private Integer productNumber;
- private String no;
- @Override
- public String toString() {
- return "CoinOrdeBean{" +
- "sn='" + sn + '\'' +
- ", name='" + name + '\'' +
- ", clientId='" + clientId + '\'' +
- ", price=" + price +
- ", payType=" + payType +
- ", createDate='" + createDate + '\'' +
- ", status='" + status + '\'' +
- ", productNumber=" + productNumber +
- ", no='" + no + '\'' +
- '}';
- }
- public String getNo() {
- return no;
- }
- public void setNo(String no) {
- this.no = no;
- }
- public Integer getProductNumber() {
- return productNumber;
- }
- public String getStatus() {
- return status;
- }
- public void setStatus(String status) {
- this.status = status;
- }
- public String getCreateDate() {
- return createDate;
- }
- public void setCreateDate(String createDate) {
- this.createDate = createDate;
- }
- public String getSn() {
- return sn;
- }
- public void setSn(String sn) {
- this.sn = sn;
- }
- public String getName() {
- return name;
- }
- public void setName(String name) {
- this.name = name;
- }
- public String getClientId() {
- return clientId;
- }
- public void setClientId(String clientId) {
- this.clientId = clientId;
- }
- public double getPrice() {
- return price;
- }
- public void setPrice(double price) {
- this.price = price;
- }
- public int getPayType() {
- return payType;
- }
- public void setPayType(int payType) {
- this.payType = payType;
- }
- public void setProductNumber(Integer productNumber) {
- this.productNumber = productNumber;
- }
- }
|