| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121 |
- package cn.com.goldenwater.dcproj.param;
- import cn.com.goldenwater.core.param.PageParam;
- import io.swagger.annotations.ApiParam;
- import java.util.Date;
- import java.io.Serializable;
- import io.swagger.annotations.ApiModelProperty;
- /**
- * FeedbackParam
- *
- * @author lhc
- * @date 2020-7-15
- */
- public class FeedbackParam extends PageParam implements Serializable {
- // ID
- @ApiParam(name = "ID")
- @ApiModelProperty(value = "ID", name = "id")
- private String id;
- // 意见或建议类型 1程序BUG 2 内容意见 3 网络问题 4 功能建议 5 其他
- @ApiParam(name = "意见或建议类型 1程序BUG 2 内容意见 3 网络问题 4 功能建议 5 其他")
- @ApiModelProperty(value = "意见或建议类型 1程序BUG 2 内容意见 3 网络问题 4 功能建议 5 其他", name = "ptype")
- private String ptype;
- // 具体描述
- @ApiParam(name = "具体描述")
- @ApiModelProperty(value = "具体描述", name = "detail")
- private String detail;
- // 录入姓名
- @ApiParam(name = "录入姓名")
- @ApiModelProperty(value = "录入姓名", name = "uname")
- private String uname;
- // 联系人电话
- @ApiParam(name = "联系人电话")
- @ApiModelProperty(value = "联系人电话", name = "phone")
- private String phone;
- // 备注
- @ApiParam(name = "备注")
- @ApiModelProperty(value = "备注", name = "remark")
- private String remark;
- // 处理状态 0 未处理 1 已处理
- @ApiParam(name = "处理状态 0 未处理 1 已处理")
- @ApiModelProperty(value = "处理状态 0 未处理 1 已处理", name = "state")
- private String state;
- // 插入时间
- @ApiParam(name = "插入时间")
- @ApiModelProperty(value = "插入时间", name = "intm")
- private Date intm;
- // 更新时间
- @ApiParam(name = "更新时间")
- @ApiModelProperty(value = "更新时间", name = "uptm")
- private Date uptm;
- // 数据状态(0:正常;9:删除)
- @ApiParam(name = "数据状态(0:正常;9:删除)")
- @ApiModelProperty(value = "数据状态(0:正常;9:删除)", name = "dataStat")
- private String dataStat;
- public FeedbackParam() {
- }
- 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;
- }
- }
|