| 12345678910111213141516171819202122232425262728293031323334 |
- package cn.hobbystocks.auc.domain;
- import com.fasterxml.jackson.annotation.JsonFormat;
- import lombok.Data;
- import java.util.Date;
- @Data
- public class LotError {
- public LotError() {
- }
- public LotError(Long lotId, Long bidId, Long point, String type, Date createTime, String orderId, String msg) {
- this.lotId = lotId;
- this.bidId = bidId;
- this.point = point;
- this.type = type;
- this.createTime = createTime;
- this.orderId = orderId;
- this.msg = msg;
- }
- private Long id;
- private Long lotId;
- private Long bidId;
- private Long point;
- private String type;
- @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
- private Date createTime;
- private String orderId;
- private String msg;
- }
|