|
@@ -0,0 +1,82 @@
|
|
|
+package shop.alien.gateway.entity.vo;
|
|
|
+
|
|
|
+import com.baomidou.mybatisplus.annotation.*;
|
|
|
+import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
+import com.fasterxml.jackson.annotation.JsonInclude;
|
|
|
+import io.swagger.annotations.ApiModelProperty;
|
|
|
+import lombok.Data;
|
|
|
+
|
|
|
+import java.math.BigDecimal;
|
|
|
+import java.util.Date;
|
|
|
+
|
|
|
+/**
|
|
|
+ * 用户订单
|
|
|
+ */
|
|
|
+@Data
|
|
|
+@JsonInclude
|
|
|
+public class LifeUserOrderVo {
|
|
|
+
|
|
|
+ @TableId(value = "id", type = IdType.AUTO)
|
|
|
+ private String id;
|
|
|
+
|
|
|
+ private String userId;
|
|
|
+
|
|
|
+ private String storeId;
|
|
|
+
|
|
|
+ private String quanId;
|
|
|
+
|
|
|
+ private String quanCode;
|
|
|
+
|
|
|
+ private String orderNo;
|
|
|
+
|
|
|
+ private Integer status;
|
|
|
+
|
|
|
+ private Integer purchaseQuantity;
|
|
|
+
|
|
|
+ private Integer couponId;
|
|
|
+
|
|
|
+ private String userPhone;
|
|
|
+
|
|
|
+ private String type;
|
|
|
+
|
|
|
+ private BigDecimal totalFinalPrice;
|
|
|
+
|
|
|
+ private String couponName;
|
|
|
+
|
|
|
+ private String price;
|
|
|
+
|
|
|
+ private String finalPrice;
|
|
|
+
|
|
|
+ private Date buyTime;
|
|
|
+
|
|
|
+ private Date payTime;
|
|
|
+
|
|
|
+ private String payMethod;
|
|
|
+
|
|
|
+ private Date usedTime;
|
|
|
+
|
|
|
+ private Date refundTime;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "删除标记, 0:未删除, 1:已删除")
|
|
|
+ @TableField("delete_flag")
|
|
|
+ @TableLogic
|
|
|
+ private Integer deleteFlag;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "创建时间")
|
|
|
+ @TableField(value = "created_time", fill = FieldFill.INSERT)
|
|
|
+ @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
|
|
+ private Date createdTime;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "创建人ID")
|
|
|
+ @TableField("created_user_id")
|
|
|
+ private Integer createdUserId;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "修改时间")
|
|
|
+ @TableField(value = "updated_time", fill = FieldFill.UPDATE)
|
|
|
+ @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
|
|
+ private Date updatedTime;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "修改人ID")
|
|
|
+ @TableField("updated_user_id")
|
|
|
+ private Integer updatedUserId;
|
|
|
+}
|