| | |
| | | package com.panzhihua.service_community.model.dos; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.*; |
| | | import lombok.Data; |
| | | |
| | | import java.io.Serializable; |
| | | import java.util.Date; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.*; |
| | | |
| | | import lombok.Data; |
| | | |
| | | /** |
| | | * @auther lyq |
| | |
| | | @TableField(fill = FieldFill.INSERT) |
| | | private Date createAt; |
| | | |
| | | @Override |
| | | public String toString() { |
| | | return "ComShopOrderOperateDO{" + "id=" + id + ", orderNo=" + orderNo + ", operationBy=" + operationBy |
| | | + ", operationTime=" + operationTime + ", operationType=" + operationType + ", operationContent=" |
| | | + operationContent + ", createAt=" + createAt + "}"; |
| | | } |
| | | |
| | | /** |
| | | * 操作类型(1.创建订单 2.取消订单 3.订单支付 4.订单发货 5.订单完成) |
| | | */ |
| | | public interface operationType{ |
| | | public interface operationType { |
| | | int create = 1; |
| | | int cancel = 2; |
| | | int pay = 3; |
| | | int deliver = 4; |
| | | int complete = 5; |
| | | } |
| | | |
| | | @Override |
| | | public String toString() { |
| | | return "ComShopOrderOperateDO{" + |
| | | "id=" + id + |
| | | ", orderNo=" + orderNo + |
| | | ", operationBy=" + operationBy + |
| | | ", operationTime=" + operationTime + |
| | | ", operationType=" + operationType + |
| | | ", operationContent=" + operationContent + |
| | | ", createAt=" + createAt + |
| | | "}"; |
| | | } |
| | | } |