16 changed files with 246 additions and 145 deletions
@ -1,25 +0,0 @@ |
|||||
package com.yxt.anrui.base.api.basevehicle; |
|
||||
|
|
||||
import com.yxt.common.core.vo.Vo; |
|
||||
import io.swagger.annotations.ApiModelProperty; |
|
||||
import lombok.Data; |
|
||||
|
|
||||
/** |
|
||||
* @Author dimengzhe |
|
||||
* @Date 2022/4/28 16:58 |
|
||||
* @Description |
|
||||
*/ |
|
||||
@Data |
|
||||
public class PcBaseVehicleOrderListVo implements Vo { |
|
||||
private static final long serialVersionUID = 3105577353109956233L; |
|
||||
|
|
||||
@ApiModelProperty("车架号") |
|
||||
private String linkNo; |
|
||||
@ApiModelProperty("车辆存放地点") |
|
||||
private String linkText; |
|
||||
@ApiModelProperty("车辆sid") |
|
||||
private String linkSid; |
|
||||
@ApiModelProperty(value = "是否是虚拟订单:1是,0不是") |
|
||||
private int isFictitious; |
|
||||
|
|
||||
} |
|
@ -0,0 +1,24 @@ |
|||||
|
package com.yxt.anrui.buscenter.api.busmaindeposit.pc; |
||||
|
|
||||
|
import com.yxt.common.core.query.Query; |
||||
|
import io.swagger.annotations.ApiModelProperty; |
||||
|
import lombok.Data; |
||||
|
|
||||
|
/** |
||||
|
* @Author dimengzhe |
||||
|
* @Date 2022/4/29 8:52 |
||||
|
* @Description |
||||
|
*/ |
||||
|
@Data |
||||
|
public class PcBusMainDepositVehicleQuery implements Query { |
||||
|
private static final long serialVersionUID = 8461654016604027355L; |
||||
|
|
||||
|
@ApiModelProperty(value = "车型sid") |
||||
|
private String modelSid; |
||||
|
@ApiModelProperty(value = "配置sid") |
||||
|
private String modelConfigSid; |
||||
|
@ApiModelProperty(value = "业务员sid") |
||||
|
private String staffSid; |
||||
|
@ApiModelProperty(value = "客户sid") |
||||
|
private String customerSid; |
||||
|
} |
Loading…
Reference in new issue