| | |
| | | |
| | | import com.baomidou.mybatisplus.annotation.IdType; |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import lombok.Data; |
| | | |
| | | import java.util.Date; |
| | | |
| | | @Data |
| | | public class MoneyLog { |
| | | |
| | | @TableId(value = "id",type = IdType.AUTO) |
| | | private int id; |
| | | private Integer id; |
| | | private String type; |
| | | private String amount; |
| | | private String descs; |
| | |
| | | private String after; |
| | | private String accectType; |
| | | private String userId; |
| | | private String symbol; |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "Asia/Tokyo") |
| | | private Date createTime; |
| | | |
| | | |
| | | } |