mirror of https://github.com/jeecgboot/jeecg-boot
Update PlatformOrder model
parent
c4c9390acc
commit
f458268f4d
|
@ -18,8 +18,8 @@ import java.util.Date;
|
||||||
/**
|
/**
|
||||||
* @Description: 平台订单表
|
* @Description: 平台订单表
|
||||||
* @Author: jeecg-boot
|
* @Author: jeecg-boot
|
||||||
* @Date: 2023-11-28
|
* @Date: 2024-01-25
|
||||||
* @Version: V1.7
|
* @Version: V1.8
|
||||||
*/
|
*/
|
||||||
@ApiModel(value = "platform_order对象", description = "平台订单表")
|
@ApiModel(value = "platform_order对象", description = "平台订单表")
|
||||||
@Data
|
@Data
|
||||||
|
@ -234,4 +234,22 @@ public class PlatformOrder implements Serializable {
|
||||||
@Excel(name = "包材费", width = 15)
|
@Excel(name = "包材费", width = 15)
|
||||||
@ApiModelProperty(value = "包材费")
|
@ApiModelProperty(value = "包材费")
|
||||||
private java.math.BigDecimal packagingMaterialFee;
|
private java.math.BigDecimal packagingMaterialFee;
|
||||||
|
/**
|
||||||
|
* 收件人城市
|
||||||
|
*/
|
||||||
|
@Excel(name = "收件人城市", width = 15)
|
||||||
|
@ApiModelProperty(value = "收件人城市")
|
||||||
|
private java.lang.String city;
|
||||||
|
/**
|
||||||
|
* Shopify平台留言
|
||||||
|
*/
|
||||||
|
@Excel(name = "Shopify平台留言", width = 15)
|
||||||
|
@ApiModelProperty(value = "Shopify平台留言")
|
||||||
|
private java.lang.String shopifyNote;
|
||||||
|
/**
|
||||||
|
* 个人税号
|
||||||
|
*/
|
||||||
|
@Excel(name = "个人税号", width = 15)
|
||||||
|
@ApiModelProperty(value = "个人税号")
|
||||||
|
private java.lang.String taxNumber;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue