You've already forked FrameTour-BE
订单备注操作
This commit is contained in:
@ -0,0 +1,18 @@
|
||||
package com.ycwl.basic.model.pc.orderOp.entity;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import lombok.Data;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
@Data
|
||||
@TableName("order_operation")
|
||||
public class OrderOperationEntity {
|
||||
private Long id;
|
||||
private Long orderId;
|
||||
private String type;
|
||||
private String remark;
|
||||
private String user;
|
||||
private String userId;
|
||||
private Date createTime;
|
||||
}
|
Reference in New Issue
Block a user