Update PlatformOrder model

pull/8040/head
Qiuyi LI 2024-06-27 17:14:11 +02:00
parent ced711cb03
commit f2c5040a4b
1 changed files with 9 additions and 4 deletions

View File

@ -12,14 +12,13 @@ import org.jeecgframework.poi.excel.annotation.Excel;
import org.springframework.format.annotation.DateTimeFormat; import org.springframework.format.annotation.DateTimeFormat;
import java.io.Serializable; import java.io.Serializable;
import java.math.BigDecimal;
import java.util.Date; import java.util.Date;
/** /**
* @Description: * @Description:
* @Author: jeecg-boot * @Author: jeecg-boot
* @Date: 2024-05-30 * @Date: 2024-06-25
* @Version: V1.9 * @Version: V1.10
*/ */
@ApiModel(value = "platform_order对象", description = "平台订单表") @ApiModel(value = "platform_order对象", description = "平台订单表")
@Data @Data
@ -258,5 +257,11 @@ public class PlatformOrder implements Serializable {
@Excel(name = "Shopify平台已同步(1=已同步0=未同步)", width = 15, dicCode = "yn") @Excel(name = "Shopify平台已同步(1=已同步0=未同步)", width = 15, dicCode = "yn")
@Dict(dicCode = "yn") @Dict(dicCode = "yn")
@ApiModelProperty(value = "Shopify平台已同步(1=已同步0=未同步)") @ApiModelProperty(value = "Shopify平台已同步(1=已同步0=未同步)")
private java.lang.String shopifySynced; private String shopifySynced;
/**
*
*/
@Excel(name = "目的地转单号", width = 15)
@ApiModelProperty(value = "目的地转单号")
private String localTrackingNumber;
} }