orderMaster时间查询字段加JsonFormat注解

This commit is contained in:
donqi 2022-06-09 17:59:55 +08:00
parent c6fe9ce12e
commit 9e0d6b2258
1 changed files with 3 additions and 1 deletions

View File

@ -1,5 +1,6 @@
package com.ghy.order.domain;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.ghy.common.annotation.Excel;
import com.ghy.common.core.domain.BaseEntity;
import com.ghy.payment.domain.FinancialMaster;
@ -51,8 +52,9 @@ public class OrderMaster extends BaseEntity {
private Date payTime;
@Excel(name = "接单时间", cellType = Excel.ColumnType.STRING)
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
private Date revTime;
private Worker worker;
private FinancialMaster financialMaster;