|
|
@@ -0,0 +1,72 @@ |
|
|
|
package com.qtzl.alterSales.manager.model.protocol.sales; |
|
|
|
|
|
|
|
import cn.com.taiji.common.model.BaseModel; |
|
|
|
import com.qtzl.alterSales.manager.service.AfterSalesCmd; |
|
|
|
import com.txffp.api.core.manager.comm.annotation.Api; |
|
|
|
|
|
|
|
/*** |
|
|
|
* <p> |
|
|
|
* 根据车辆编号进行车辆状态名单管理(勿对渠道开放) |
|
|
|
* </p> |
|
|
|
* @author hou yi |
|
|
|
* {@code @date} 2025/1/15 14:19 |
|
|
|
**/ |
|
|
|
@Api(cmdClazz = AfterSalesCmd.class, cmd = "HANDLEBLACKLIST") |
|
|
|
public class AflVehicleStatusInfoRequest extends BaseModel { |
|
|
|
|
|
|
|
/*** 车辆编号*/ |
|
|
|
private String vehicleId; |
|
|
|
|
|
|
|
/*** 状态名单类型*/ |
|
|
|
private Integer opType; |
|
|
|
|
|
|
|
/*** 下黑原因*/ |
|
|
|
private Integer reason; |
|
|
|
|
|
|
|
/*** 备注*/ |
|
|
|
private Integer description; |
|
|
|
|
|
|
|
/*** 操作人*/ |
|
|
|
private String operator; |
|
|
|
|
|
|
|
|
|
|
|
public String getVehicleId() { |
|
|
|
return vehicleId; |
|
|
|
} |
|
|
|
|
|
|
|
public void setVehicleId(String vehicleId) { |
|
|
|
this.vehicleId = vehicleId; |
|
|
|
} |
|
|
|
|
|
|
|
public Integer getOpType() { |
|
|
|
return opType; |
|
|
|
} |
|
|
|
|
|
|
|
public void setOpType(Integer opType) { |
|
|
|
this.opType = opType; |
|
|
|
} |
|
|
|
|
|
|
|
public Integer getReason() { |
|
|
|
return reason; |
|
|
|
} |
|
|
|
|
|
|
|
public void setReason(Integer reason) { |
|
|
|
this.reason = reason; |
|
|
|
} |
|
|
|
|
|
|
|
public Integer getDescription() { |
|
|
|
return description; |
|
|
|
} |
|
|
|
|
|
|
|
public void setDescription(Integer description) { |
|
|
|
this.description = description; |
|
|
|
} |
|
|
|
|
|
|
|
public String getOperator() { |
|
|
|
return operator; |
|
|
|
} |
|
|
|
|
|
|
|
public void setOperator(String operator) { |
|
|
|
this.operator = operator; |
|
|
|
} |
|
|
|
} |