package com.nanjing.water.entity.request.test; import java.math.BigDecimal; public class ReqCreateTestInfo { /** * 名称 */ private String name; /** * 用户id */ private Long userId; /** * 电话 */ private String phone; /** * 余额 */ private BigDecimal balance; /** * 性别 ESex */ private Integer sex; /** * 生日 */ private String birthday; /** * 排序值 */ private Integer sort; /** * 备注 */ private String comment; public String getName() { return name; } public void setName(String name) { this.name = name; } public Long getUserId() { return userId; } public void setUserId(Long userId) { this.userId = userId; } public String getPhone() { return phone; } public void setPhone(String phone) { this.phone = phone; } public BigDecimal getBalance() { return balance; } public void setBalance(BigDecimal balance) { this.balance = balance; } public Integer getSex() { return sex; } public void setSex(Integer sex) { this.sex = sex; } public String getBirthday() { return birthday; } public void setBirthday(String birthday) { this.birthday = birthday; } public Integer getSort() { return sort; } public void setSort(Integer sort) { this.sort = sort; } public String getComment() { return comment; } public void setComment(String comment) { this.comment = comment; } }