Buy.java 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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. @TableField(exist = false)
  45. private Integer roleType;
  46. }