Aaaaaaaa 2024-09-04 01:08:17 +08:00
parent 000f20eae0
commit 3037df0b8c
1 changed files with 9 additions and 0 deletions

View File

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