Buy.java 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. package com.bofeng.entity;
  2. import com.baomidou.mybatisplus.annotations.TableField;
  3. import com.baomidou.mybatisplus.annotations.TableId;
  4. import com.baomidou.mybatisplus.annotations.TableName;
  5. import lombok.Getter;
  6. import lombok.Setter;
  7. import org.joda.time.DateTime;
  8. @Getter
  9. @Setter
  10. @TableName("jm_buy")
  11. public class Buy {
  12. @TableId("buy_id")
  13. private Long buyId;
  14. @TableField("jm_id")
  15. private Long jmId;
  16. @TableField("user_id")
  17. private Long userId;
  18. @TableField("buy_count")
  19. private Integer buyCount;
  20. @TableField("buy_money")
  21. private String buyMoney;
  22. @TableField("phone")
  23. private String phone;
  24. @TableField("buy_status")
  25. private Integer buyStatus;
  26. @TableField("my_remark")
  27. private String myRemark;
  28. @TableField("user_create")
  29. private Long userCreate;
  30. @TableField("time_create")
  31. private DateTime timeCreate;
  32. @TableField(exist = false)
  33. private String tgTitle;
  34. @TableField(exist = false)
  35. private Integer tgStatus;
  36. @TableField(exist = false)
  37. private Integer count;
  38. @TableField(exist = false)
  39. private String tgPrice;
  40. @TableField(exist = false)
  41. private Integer tgMaxNum;
  42. @TableField(exist = false)
  43. private String tgSupplier;
  44. }