|
|
@ -20,7 +20,7 @@ import lombok.experimental.Accessors; |
|
|
|
/** |
|
|
|
* @Description: 订单表 |
|
|
|
* @Author: jeecg-boot |
|
|
|
* @Date: 2024-08-10 |
|
|
|
* @Date: 2025-01-25 |
|
|
|
* @Version: V1.0 |
|
|
|
*/ |
|
|
|
@Data |
|
|
@ -70,6 +70,11 @@ public class MsgOrder implements Serializable { |
|
|
|
@Excel(name = "下单地址", width = 15) |
|
|
|
@ApiModelProperty(value = "下单地址") |
|
|
|
private java.lang.String address; |
|
|
|
/**地址标识*/ |
|
|
|
@Excel(name = "地址标识", width = 15, dictTable = "msg_address", dicText = "address_detail", dicCode = "id") |
|
|
|
@Dict(dictTable = "msg_address", dicText = "address_detail", dicCode = "id") |
|
|
|
@ApiModelProperty(value = "地址标识") |
|
|
|
private java.lang.String addressId; |
|
|
|
/**总计时间*/ |
|
|
|
@Excel(name = "总计时间", width = 15) |
|
|
|
@ApiModelProperty(value = "总计时间") |
|
|
@ -115,11 +120,10 @@ public class MsgOrder implements Serializable { |
|
|
|
@Excel(name = "订单备注", width = 15) |
|
|
|
@ApiModelProperty(value = "订单备注") |
|
|
|
private java.lang.String remark; |
|
|
|
/**地址标识*/ |
|
|
|
@Excel(name = "地址标识", width = 15, dictTable = "msg_address", dicText = "address", dicCode = "id") |
|
|
|
@Dict(dictTable = "msg_address", dicText = "address", dicCode = "id") |
|
|
|
@ApiModelProperty(value = "地址标识") |
|
|
|
private java.lang.String addressId; |
|
|
|
/**地址明细*/ |
|
|
|
@Excel(name = "地址明细", width = 15) |
|
|
|
@ApiModelProperty(value = "地址明细") |
|
|
|
private java.lang.String addressDetails; |
|
|
|
/**优惠券标识*/ |
|
|
|
@Excel(name = "优惠券标识", width = 15, dictTable = "msg_coupon", dicText = "money", dicCode = "id") |
|
|
|
@Dict(dictTable = "msg_coupon", dicText = "money", dicCode = "id") |
|
|
@ -169,7 +173,7 @@ public class MsgOrder implements Serializable { |
|
|
|
/**服务下单时间*/ |
|
|
|
@Excel(name = "服务下单时间", width = 15) |
|
|
|
@ApiModelProperty(value = "服务下单时间") |
|
|
|
private java.util.Date serviceTime; |
|
|
|
private java.lang.String serviceTime; |
|
|
|
/**用户评价*/ |
|
|
|
@Excel(name = "用户评价", width = 15) |
|
|
|
@ApiModelProperty(value = "用户评价") |
|
|
@ -179,9 +183,7 @@ public class MsgOrder implements Serializable { |
|
|
|
@ApiModelProperty(value = "技师评价") |
|
|
|
private java.lang.Integer jsEvaluated; |
|
|
|
/**服务日期*/ |
|
|
|
// @Excel(name = "服务日期", width = 15, format = "yyyy-MM-dd") |
|
|
|
// @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd") |
|
|
|
// @DateTimeFormat(pattern="yyyy-MM-dd") |
|
|
|
|
|
|
|
@ApiModelProperty(value = "服务日期") |
|
|
|
private java.lang.String serviceDate; |
|
|
|
/**分销商所得(一级)*/ |
|
|
|