Update PlatformOrder model

pull/6221/head
Qiuyi LI 2024-01-26 16:53:36 +01:00
parent c4c9390acc
commit f458268f4d
1 changed files with 20 additions and 2 deletions

View File

@ -18,8 +18,8 @@ import java.util.Date;
/**
* @Description:
* @Author: jeecg-boot
* @Date: 2023-11-28
* @Version: V1.7
* @Date: 2024-01-25
* @Version: V1.8
*/
@ApiModel(value = "platform_order对象", description = "平台订单表")
@Data
@ -234,4 +234,22 @@ public class PlatformOrder implements Serializable {
@Excel(name = "包材费", width = 15)
@ApiModelProperty(value = "包材费")
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;
}