OrderFeedbackVo.java 3.94 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
package com.zehong.system.domain.vo;

import com.fasterxml.jackson.annotation.JsonFormat;
import com.zehong.common.core.domain.BaseEntity;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;

import java.util.Date;

/**
 * 工单反馈信息对象 t_order_feedback
 * 
 * @author zehong
 * @date 2021-07-19
 */
public class OrderFeedbackVo extends BaseEntity
{
    private static final long serialVersionUID = 1L;

    /** 工单反馈id */
21
    private Integer feedbackId;
22 23 24 25

    /** 工单id */
    private String orderId;

26 27
    /** 设备id */
    private Integer deviceId;
28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56

    /** 设备名称 */
    private String deviceName;

    /** 设备类型 */
    private String deviceType;

    /** 反馈内容 */
    private String contents;

    /** 反馈时间 */
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private Date feedbackTime;

    /** 是否存在隐患(1是,2否) */
    private String isHiddenDanger;

    /** 处理状态(1不需处理,2已处理完成,3未处理完成) */
    private String dealStatus;

    /** 图片地址1 */
    private String pictureUrl1;

    /** 图片地址2 */
    private String pictureUrl2;

    /** 图片地址3 */
    private String pictureUrl3;

57
    public void setFeedbackId(Integer feedbackId)
58 59 60 61
    {
        this.feedbackId = feedbackId;
    }

62
    public Integer getFeedbackId()
63 64 65 66 67 68 69 70 71 72 73 74 75 76
    {
        return feedbackId;
    }

    public void setOrderId(String orderId) 
    {
        this.orderId = orderId;
    }

    public String getOrderId() 
    {
        return orderId;
    }

77
    public void setDeviceId(Integer deviceId)
78
    {
79
        this.deviceId = deviceId;
80 81
    }

82
    public Integer getDeviceId()
83
    {
84
        return deviceId;
85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177
    }

    public String getDeviceName() {
        return deviceName;
    }

    public void setDeviceName(String deviceName) {
        this.deviceName = deviceName;
    }

    public String getDeviceType() {
        return deviceType;
    }

    public void setDeviceType(String deviceType) {
        this.deviceType = deviceType;
    }

    public void setContents(String contents)
    {
        this.contents = contents;
    }

    public String getContents() 
    {
        return contents;
    }

    public void setFeedbackTime(Date feedbackTime) 
    {
        this.feedbackTime = feedbackTime;
    }

    public Date getFeedbackTime() 
    {
        return feedbackTime;
    }

    public void setIsHiddenDanger(String isHiddenDanger) 
    {
        this.isHiddenDanger = isHiddenDanger;
    }

    public String getIsHiddenDanger() 
    {
        return isHiddenDanger;
    }

    public void setDealStatus(String dealStatus) 
    {
        this.dealStatus = dealStatus;
    }

    public String getDealStatus() 
    {
        return dealStatus;
    }

    public void setPictureUrl1(String pictureUrl1) 
    {
        this.pictureUrl1 = pictureUrl1;
    }

    public String getPictureUrl1() 
    {
        return pictureUrl1;
    }

    public void setPictureUrl2(String pictureUrl2) 
    {
        this.pictureUrl2 = pictureUrl2;
    }

    public String getPictureUrl2() 
    {
        return pictureUrl2;
    }

    public void setPictureUrl3(String pictureUrl3) 
    {
        this.pictureUrl3 = pictureUrl3;
    }

    public String getPictureUrl3() 
    {
        return pictureUrl3;
    }

    @Override
    public String toString() {
        return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
            .append("feedbackId", getFeedbackId())
            .append("orderId", getOrderId())
178
            .append("deviceId", getDeviceId())
179 180 181 182 183 184 185 186 187 188
            .append("contents", getContents())
            .append("feedbackTime", getFeedbackTime())
            .append("isHiddenDanger", getIsHiddenDanger())
            .append("dealStatus", getDealStatus())
            .append("pictureUrl1", getPictureUrl1())
            .append("pictureUrl2", getPictureUrl2())
            .append("pictureUrl3", getPictureUrl3())
            .toString();
    }
}