You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
342 B
21 lines
342 B
package com.woniu.service;
|
|
|
|
import lombok.Data;
|
|
|
|
import java.io.Serializable;
|
|
|
|
@Data
|
|
public class SaveOrderEventMessage implements Serializable {
|
|
/**
|
|
* 订单号
|
|
*/
|
|
private String orderId;
|
|
/**
|
|
* 订单状态
|
|
*/
|
|
private Integer orderStatus;
|
|
/**
|
|
* 下单用户ID
|
|
*/
|
|
private String userId;
|
|
}
|