6 changed files with 141 additions and 50 deletions
@ -1,8 +1,46 @@ |
|||||
package com.qs.serve.modules.vtb.entity.so; |
package com.qs.serve.modules.vtb.entity.so; |
||||
|
|
||||
|
import com.fasterxml.jackson.annotation.JsonFormat; |
||||
|
import lombok.Data; |
||||
|
import org.springframework.format.annotation.DateTimeFormat; |
||||
|
|
||||
|
import java.time.LocalDateTime; |
||||
|
|
||||
/** |
/** |
||||
* @author YenHex |
* @author YenHex |
||||
* @since 2023/9/4 |
* @since 2023/9/4 |
||||
*/ |
*/ |
||||
|
@Data |
||||
public class VtbVerificationCheckSo { |
public class VtbVerificationCheckSo { |
||||
|
/** 核销编码 */ |
||||
|
private String verificationCode; |
||||
|
/** 供应商编码 */ |
||||
|
private String supplierCode; |
||||
|
/** 供应商 */ |
||||
|
private String supplierName; |
||||
|
/** 费用编码 */ |
||||
|
private String costApplyCode; |
||||
|
/** 费用主题 */ |
||||
|
private String chargeTheme; |
||||
|
/** 活动编码 */ |
||||
|
private String activityCode; |
||||
|
/** 活动内容 */ |
||||
|
private String actTitle; |
||||
|
|
||||
|
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
||||
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8") |
||||
|
private LocalDateTime startCheckTime; |
||||
|
|
||||
|
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
||||
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8") |
||||
|
private LocalDateTime endCheckTime; |
||||
|
|
||||
|
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
||||
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8") |
||||
|
private LocalDateTime startPayTime; |
||||
|
|
||||
|
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
||||
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8") |
||||
|
private LocalDateTime endPayTime; |
||||
|
|
||||
} |
} |
||||
|
Loading…
Reference in new issue