package com.stylefeng.guns.modular.system.controller.resp;
|
|
import com.stylefeng.guns.modular.system.model.TAgent;
|
import com.stylefeng.guns.modular.system.model.TComplaint;
|
import io.swagger.annotations.ApiModelProperty;
|
|
import java.math.BigDecimal;
|
|
public class TComplaintResp extends TComplaint {
|
|
@ApiModelProperty(value = "投诉人名称")
|
private String userName;
|
|
@ApiModelProperty(value = "投诉人电话")
|
private String userPhone;
|
|
@ApiModelProperty(value = "司机电话")
|
private String driverPhone;
|
|
public String getUserName() {
|
return userName;
|
}
|
|
public void setUserName(String userName) {
|
this.userName = userName;
|
}
|
|
public String getUserPhone() {
|
return userPhone;
|
}
|
|
public void setUserPhone(String userPhone) {
|
this.userPhone = userPhone;
|
}
|
|
public String getDriverPhone() {
|
return driverPhone;
|
}
|
|
public void setDriverPhone(String driverPhone) {
|
this.driverPhone = driverPhone;
|
}
|
}
|