All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cn.binarywang.wx.miniapp.bean.shop.WxMaShopPriceInfo Maven / Gradle / Ivy

There is a newer version: 4.6.7.B
Show newest version
package cn.binarywang.wx.miniapp.bean.shop;

import com.google.gson.annotations.SerializedName;
import lombok.Data;

import java.io.Serializable;

/**
 * @author leiin
 * created on  2021/3/23
 */
@Data
public class WxMaShopPriceInfo implements Serializable {
  private static final long serialVersionUID = 1588840927992523263L;

  /**
   * 该订单最终的金额(单位:分)
   * 
   * 是否必填:是
   * 
*/ @SerializedName("order_price") private Integer orderPrice; /** * 运费(单位:分) *
   * 是否必填:是
   * 
*/ @SerializedName("freight") private Integer freight; /** * 优惠金额(单位:分) *
   * 是否必填:否
   * 
*/ @SerializedName("discounted_price") private Integer discountedPrice; /** * 附加金额(单位:分) *
   * 是否必填:否
   * 
*/ @SerializedName("additional_price") private Integer additionalPrice; /** * 附加金额备注 *
   * 是否必填:否
   * 
*/ @SerializedName("additional_remarks") private String additionalRemarks; }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy