1
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
package com.ruoyi.jarvis.domain;
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||
import lombok.Data;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
/**
|
||||
* 闲管家订单变更日志:状态刷新、物流变动、发货结果等
|
||||
*/
|
||||
@Data
|
||||
public class ErpGoofishOrderEventLog {
|
||||
|
||||
private Long id;
|
||||
/** erp_goofish_order.id */
|
||||
private Long orderId;
|
||||
private String appKey;
|
||||
private String orderNo;
|
||||
/** ORDER_SYNC / LOGISTICS_SYNC / SHIP */
|
||||
private String eventType;
|
||||
/** NOTIFY、LIST、DETAIL_REFRESH、UPSERT、REDIS_WAYBILL、AUTO_SHIP 等 */
|
||||
private String source;
|
||||
private String message;
|
||||
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
||||
private Date createTime;
|
||||
}
|
||||
Reference in New Issue
Block a user