Commit 6fa5ce8e by wangli

新增数据库表order_event dao

1 parent 4227118d
package com.alibaba.cloud.integration.order.dao;
import com.alibaba.cloud.integration.order.entity.OrderEvent;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import org.apache.ibatis.annotations.Mapper;
@Mapper
public interface OrderEventDao extends BaseMapper<OrderEvent> {
}
package com.alibaba.cloud.integration.order.entity;
import lombok.Data;
import java.sql.Timestamp;
@Data
public class OrderEvent {
private Integer id;
private String orderId;
private String suborderId;
private Timestamp happen;
private String event;
private String operator;
private String operator_name;
private String source;
private String desc;
private String memo;
private Timestamp create_time;
private Timestamp update_time;
}
\ No newline at end of file
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!