1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- package com.bofeng.entity;
- import com.baomidou.mybatisplus.annotations.TableField;
- import com.baomidou.mybatisplus.annotations.TableId;
- import com.baomidou.mybatisplus.annotations.TableName;
- import lombok.Getter;
- import lombok.Setter;
- import org.joda.time.DateTime;
- @Getter
- @Setter
- @TableName("jm_buy")
- public class Buy {
- @TableId("buy_id")
- private Long buyId;
- @TableField("jm_id")
- private Long jmId;
- @TableField("user_id")
- private Long userId;
- @TableField("buy_count")
- private Integer buyCount;
- @TableField("buy_money")
- private String buyMoney;
- @TableField("phone")
- private String phone;
- @TableField("buy_status")
- private Integer buyStatus;
- @TableField("my_remark")
- private String myRemark;
- @TableField("user_create")
- private Long userCreate;
- @TableField("time_create")
- private DateTime timeCreate;
- @TableField(exist = false)
- private String tgTitle;
- @TableField(exist = false)
- private Integer tgStatus;
- @TableField(exist = false)
- private Integer count;
- @TableField(exist = false)
- private String tgPrice;
- @TableField(exist = false)
- private Integer tgMaxNum;
- @TableField(exist = false)
- private String tgSupplier;
- @TableField(exist = false)
- private Integer roleType;
- }
|