/** # __----~~~~~~~~~~~------___ # . . ~~//====...... __--~ ~~ # -. \_|// |||\\ ~~~~~~::::... /~ # ___-==_ _-~o~ \/ ||| \\ _/~~- # __---~~~.==~||\=_ -_--~/_-~|- |\\ \\ _/~ # _-~~ .=~ | \\-_ '-~7 /- / || \ / # .~ .~ | \\ -_ / /- / || \ / # / ____ / | \\ ~-_/ /|- _/ .|| \ / # |~~ ~~|--~~~~--_ \ ~==-/ | \~--===~~ .\ # ' ~-| /| |-~\~~ __--~~ # |-~~-_/ | | ~\_ _-~ /\ # / \ \__ \/~ \__ # _--~ _/ | .-~~____--~-/ ~~==. # ((->/~ '.|||' -_| ~~-/ , . _|| # -_ ~\ ~~---l__i__i__i--~~_/ # _-~-__ ~) \--______________--~~ # //.-~~~-~_--~- |-------~~~~~~~~ # //.-~~~--\ # 神兽保佑 # 永无BUG! */ package com.lunhan.xxx.repository.po; import com.baomidou.mybatisplus.annotation.*; import java.math.BigDecimal; import java.sql.Timestamp; /** * 测试信息 * @author lin.liu * @description 测试信息 * @date 2021/11/23 */ @TableName("test_info") public class TestInfoPO { /** * 主键id */ @TableId @TableField("id") private Long id; /** * 名称 */ @TableField("name") private String name; /** * 用户id */ @TableField("user_id") private Long userId; /** * 电话 */ @TableField("phone") private String phone; /** * 余额 */ @TableField("balance") private BigDecimal balance; /** * 性别 男=1,女=2,其他=3 */ @TableField("sex") private Integer sex; /** * 生日 */ @TableField("birthday") private String birthday; /** * 排序值 */ @TableField("sort") private Integer sort; /** * 状态 正常=200,停用=300,删除=400 */ @TableField("status") private Integer status; /** * 备注 */ @TableField("comment") private String comment; /** * 创建时间 */ @TableField("create_time") private Long createTime; /** * 数据最后更新时间 */ @TableField("update_time") private Timestamp updateTime; /** * 是否删除(逻辑删除) */ @TableField("is_delete") private Integer isDelete; public Long getId() { return id; } public void setId(Long id) { this.id = id; } public String getName() { return this.name; } public void setName(String name) { this.name = name; } public Long getUserId() { return this.userId; } public void setUserId(Long userId) { this.userId = userId; } public String getPhone() { return this.phone; } public void setPhone(String phone) { this.phone = phone; } public BigDecimal getBalance() { return this.balance; } public void setBalance(BigDecimal balance) { this.balance = balance; } public Integer getSex() { return this.sex; } public void setSex(Integer sex) { this.sex = sex; } public String getBirthday() { return this.birthday; } public void setBirthday(String birthday) { this.birthday = birthday; } public Integer getSort() { return this.sort; } public void setSort(Integer sort) { this.sort = sort; } public Integer getStatus() { return this.status; } public void setStatus(Integer status) { this.status = status; } public String getComment() { return this.comment; } public void setComment(String comment) { this.comment = comment; } public Long getCreateTime() { return this.createTime; } public void setCreateTime(Long createTime) { this.createTime = createTime; } public Timestamp getUpdateTime() { return updateTime; } public void setUpdateTime(Timestamp updateTime) { this.updateTime = updateTime; } public Integer getIsDelete() { return isDelete; } public void setIsDelete(Integer isDelete) { this.isDelete = isDelete; } }