1
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
package com.ruoyi.jarvis.domain;
|
||||
|
||||
import com.ruoyi.common.core.domain.BaseEntity;
|
||||
import lombok.Data;
|
||||
import lombok.EqualsAndHashCode;
|
||||
|
||||
/**
|
||||
* 闲管家订单变更日志(全表检索,用于排查)
|
||||
*/
|
||||
@Data
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
public class ErpGoofishOrderEventLogQuery extends BaseEntity {
|
||||
|
||||
private Long orderId;
|
||||
private String appKey;
|
||||
private String orderNo;
|
||||
private String eventType;
|
||||
private String source;
|
||||
/** 模糊匹配 message */
|
||||
private String messageKeyword;
|
||||
}
|
||||
Reference in New Issue
Block a user