|
|
@ -11,18 +11,18 @@ import java.util.Date; |
|
|
|
@NoArgsConstructor |
|
|
|
public class Rate { |
|
|
|
private Integer rateId; |
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8") |
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
|
|
|
@DateTimeFormat(pattern = "yyyy-MM-dd") |
|
|
|
private Date startTime; |
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8") |
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
|
|
|
@DateTimeFormat(pattern = "yyyy-MM-dd") |
|
|
|
private Date endTime; |
|
|
|
private String currency; |
|
|
|
private String exchangeRate; |
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8") |
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
|
|
|
@DateTimeFormat(pattern = "yyyy-MM-dd") |
|
|
|
private Date createTime; |
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8") |
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
|
|
|
@DateTimeFormat(pattern = "yyyy-MM-dd") |
|
|
|
private Date updateTime; |
|
|
|
private Integer adminId; |
|
|
|