| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117 |
- package cn.com.goldenwater.dcproj.model;
- import java.io.Serializable;
- import java.util.Date;
- import cn.com.goldenwater.core.model.BaseBean;
- import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
- import io.swagger.annotations.ApiModelProperty;
- /**
- * entity:Feedback
- *
- * @author lhc
- * @date 2020-7-15
- */
- @JsonIgnoreProperties(value = {"handler","hibernateLazyInitializer"})
- public class Feedback extends BaseBean implements Serializable {
- // ID
- @ApiModelProperty(value="ID",name="id")
- private String id;
- // 意见或建议类型 1程序BUG 2 内容意见 3 网络问题 4 功能建议 5 其他
- @ApiModelProperty(value="意见或建议类型 1程序BUG 2 内容意见 3 网络问题 4 功能建议 5 其他",name="ptype")
- private String ptype;
- // 具体描述
- @ApiModelProperty(value="具体描述",name="detail")
- private String detail;
- // 录入姓名
- @ApiModelProperty(value="录入姓名",name="uname")
- private String uname;
- // 联系人电话
- @ApiModelProperty(value="联系人电话",name="phone")
- private String phone;
- // 备注
- @ApiModelProperty(value="备注",name="remark")
- private String remark;
- // 处理状态 0 未处理 1 已处理
- @ApiModelProperty(value="处理状态 0 未处理 1 已处理",name="state")
- private String state;
- // 插入时间
- @ApiModelProperty(value="插入时间",name="intm")
- private Date intm;
- // 更新时间
- @ApiModelProperty(value="更新时间",name="uptm")
- private Date uptm;
- // 数据状态(0:正常;9:删除)
- @ApiModelProperty(value="数据状态(0:正常;9:删除)",name="dataStat")
- private String dataStat;
- public Feedback() {
- }
- public String getId() {
- return id;
- }
- public void setId(String id) {
- this.id = id;
- }
- public String getPtype() {
- return ptype;
- }
- public void setPtype(String ptype) {
- this.ptype = ptype;
- }
- public String getDetail() {
- return detail;
- }
- public void setDetail(String detail) {
- this.detail = detail;
- }
- public String getUname() {
- return uname;
- }
- public void setUname(String uname) {
- this.uname = uname;
- }
- public String getPhone() {
- return phone;
- }
- public void setPhone(String phone) {
- this.phone = phone;
- }
- public String getRemark() {
- return remark;
- }
- public void setRemark(String remark) {
- this.remark = remark;
- }
- public String getState() {
- return state;
- }
- public void setState(String state) {
- this.state = state;
- }
- public Date getIntm() {
- return intm;
- }
- public void setIntm(Date intm) {
- this.intm = intm;
- }
- public Date getUptm() {
- return uptm;
- }
- public void setUptm(Date uptm) {
- this.uptm = uptm;
- }
- public String getDataStat() {
- return dataStat;
- }
- public void setDataStat(String dataStat) {
- this.dataStat = dataStat;
- }
- @Override
- public String toString() {
- return "Feedback [" + "id=" + id + ", ptype=" + ptype + ", detail=" + detail + ", uname=" + uname + ", phone=" + phone + ", remark=" + remark + ", state=" + state + ", intm=" + intm + ", uptm=" + uptm + ", dataStat=" + dataStat + "]";
- }
- }
|