Update PlatformOrder model to add field shopify_synced

pull/8040/head
Qiuyi LI 2024-05-31 16:07:02 +02:00
parent 6e69a8dbd0
commit be751f5fb9
1 changed files with 9 additions and 2 deletions

View File

@ -18,8 +18,8 @@ import java.util.Date;
/**
* @Description:
* @Author: jeecg-boot
* @Date: 2024-01-25
* @Version: V1.8
* @Date: 2024-05-30
* @Version: V1.9
*/
@ApiModel(value = "platform_order对象", description = "平台订单表")
@Data
@ -252,4 +252,11 @@ public class PlatformOrder implements Serializable {
@Excel(name = "个人税号", width = 15)
@ApiModelProperty(value = "个人税号")
private java.lang.String taxNumber;
/**
* Shopify(1=0=)
*/
@Excel(name = "Shopify平台已同步(1=已同步0=未同步)", width = 15, dicCode = "yn")
@Dict(dicCode = "yn")
@ApiModelProperty(value = "Shopify平台已同步(1=已同步0=未同步)")
private java.lang.String shopifySynced;
}