财务主单类型和时间格式

This commit is contained in:
clunt 2022-05-17 21:08:19 +08:00
parent 9e31d58627
commit b8a597b6b1
1 changed files with 3 additions and 1 deletions

View File

@ -1,5 +1,6 @@
package com.ghy.payment.domain;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.ghy.common.annotation.Excel;
import com.ghy.common.core.domain.BaseEntity;
import lombok.Data;
@ -40,6 +41,7 @@ public class FinancialMaster extends BaseEntity {
private Integer payStatus;
@Excel(name = "付款时间", cellType = Excel.ColumnType.STRING)
private String payTime;
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
private Data payTime;
}