1
This commit is contained in:
@@ -0,0 +1,44 @@
|
||||
package com.ruoyi.jarvis.domain;
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||
import lombok.Data;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
/**
|
||||
* 闲管家 ERP 订单(推送 + 拉单 + 详情全量)
|
||||
*/
|
||||
@Data
|
||||
public class ErpGoofishOrder {
|
||||
|
||||
private Long id;
|
||||
private String appKey;
|
||||
private Long sellerId;
|
||||
private String userName;
|
||||
private String orderNo;
|
||||
private Integer orderType;
|
||||
private Integer orderStatus;
|
||||
private Integer refundStatus;
|
||||
private Long modifyTime;
|
||||
private Long productId;
|
||||
private Long itemId;
|
||||
private String detailJson;
|
||||
private String lastNotifyJson;
|
||||
private Long jdOrderId;
|
||||
private String localWaybillNo;
|
||||
/** 0未发货 1成功 2失败 */
|
||||
private Integer shipStatus;
|
||||
private String shipError;
|
||||
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
||||
private Date shipTime;
|
||||
private String shipExpressCode;
|
||||
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
||||
private Date createTime;
|
||||
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
||||
private Date updateTime;
|
||||
|
||||
/** 联查:第三方单号(jd_order) */
|
||||
private String jdThirdPartyOrderNo;
|
||||
/** 联查:内部备注单号 */
|
||||
private String jdRemark;
|
||||
}
|
||||
Reference in New Issue
Block a user