dev2
parent
000f20eae0
commit
3037df0b8c
|
@ -2,6 +2,7 @@ package com.muyu.cloud.market.domin;
|
||||||
|
|
||||||
import com.baomidou.mybatisplus.annotation.TableName;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
||||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||||
|
import com.muyu.common.core.annotation.Excel;
|
||||||
import com.muyu.common.core.web.domain.BaseEntity;
|
import com.muyu.common.core.web.domain.BaseEntity;
|
||||||
import lombok.AllArgsConstructor;
|
import lombok.AllArgsConstructor;
|
||||||
import lombok.Data;
|
import lombok.Data;
|
||||||
|
@ -29,6 +30,7 @@ public class Orders extends BaseEntity {
|
||||||
/**
|
/**
|
||||||
* 订单编号
|
* 订单编号
|
||||||
*/
|
*/
|
||||||
|
@Excel(name = "订单编号")
|
||||||
private String ordersNum;
|
private String ordersNum;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -44,21 +46,25 @@ public class Orders extends BaseEntity {
|
||||||
/**
|
/**
|
||||||
* 订单金额
|
* 订单金额
|
||||||
*/
|
*/
|
||||||
|
@Excel ( name ="订单金额")
|
||||||
private BigDecimal ordersPrice;
|
private BigDecimal ordersPrice;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 订单规格
|
* 订单规格
|
||||||
*/
|
*/
|
||||||
|
@Excel(name = "订单规格")
|
||||||
private String ordersSpecification;
|
private String ordersSpecification;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 订单款项状态(1已付款,2未付款,0待支付 3.售后(申请退款) 4.已退款)
|
* 订单款项状态(1已付款,2未付款,0待支付 3.售后(申请退款) 4.已退款)
|
||||||
*/
|
*/
|
||||||
|
@Excel(name = "订单款项状态")
|
||||||
private Integer ordersState;
|
private Integer ordersState;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 订单日期
|
* 订单日期
|
||||||
*/
|
*/
|
||||||
|
@Excel(name = "订单日期")
|
||||||
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
||||||
@JsonFormat(locale="zh", timezone="GMT+8", pattern="yyyy-MM-dd HH:mm:ss")
|
@JsonFormat(locale="zh", timezone="GMT+8", pattern="yyyy-MM-dd HH:mm:ss")
|
||||||
private Date ordersLaunchdate;
|
private Date ordersLaunchdate;
|
||||||
|
@ -66,6 +72,7 @@ public class Orders extends BaseEntity {
|
||||||
/**
|
/**
|
||||||
* 逻辑删除字段
|
* 逻辑删除字段
|
||||||
*/
|
*/
|
||||||
|
@Excel(name = "逻辑删除字段")
|
||||||
private Integer exist;
|
private Integer exist;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -76,6 +83,7 @@ public class Orders extends BaseEntity {
|
||||||
/**
|
/**
|
||||||
* 产品名称
|
* 产品名称
|
||||||
*/
|
*/
|
||||||
|
@Excel(name = "产品名称")
|
||||||
private String productName;
|
private String productName;
|
||||||
|
|
||||||
//用户模块(要使用外键)
|
//用户模块(要使用外键)
|
||||||
|
@ -87,6 +95,7 @@ public class Orders extends BaseEntity {
|
||||||
/**
|
/**
|
||||||
* 用户账号
|
* 用户账号
|
||||||
*/
|
*/
|
||||||
|
@Excel(name = "用户账号")
|
||||||
private String userName;
|
private String userName;
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue