mirror of https://github.com/jeecgboot/jeecg-boot
Update PlatformOrder model to add field shopify_synced
parent
6e69a8dbd0
commit
be751f5fb9
|
@ -18,8 +18,8 @@ import java.util.Date;
|
||||||
/**
|
/**
|
||||||
* @Description: 平台订单表
|
* @Description: 平台订单表
|
||||||
* @Author: jeecg-boot
|
* @Author: jeecg-boot
|
||||||
* @Date: 2024-01-25
|
* @Date: 2024-05-30
|
||||||
* @Version: V1.8
|
* @Version: V1.9
|
||||||
*/
|
*/
|
||||||
@ApiModel(value = "platform_order对象", description = "平台订单表")
|
@ApiModel(value = "platform_order对象", description = "平台订单表")
|
||||||
@Data
|
@Data
|
||||||
|
@ -252,4 +252,11 @@ public class PlatformOrder implements Serializable {
|
||||||
@Excel(name = "个人税号", width = 15)
|
@Excel(name = "个人税号", width = 15)
|
||||||
@ApiModelProperty(value = "个人税号")
|
@ApiModelProperty(value = "个人税号")
|
||||||
private java.lang.String taxNumber;
|
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;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue