
11 changed files with 148 additions and 21 deletions
@ -0,0 +1,27 @@ |
|||
package com.yxt.anrui.scm.api.scmvehicleactualdetails; |
|||
|
|||
import com.yxt.common.core.vo.Vo; |
|||
import io.swagger.annotations.ApiModelProperty; |
|||
import lombok.Data; |
|||
|
|||
import java.util.Date; |
|||
|
|||
/** |
|||
* @Author dimengzhe |
|||
* @Date 2022/4/9 11:35 |
|||
* @Description 未售买断已选择的车辆列表 |
|||
*/ |
|||
@Data |
|||
public class ScmVehicleActualDetailsVo implements Vo { |
|||
private static final long serialVersionUID = -281646013506665817L; |
|||
@ApiModelProperty(value = "sid") |
|||
private String sid; |
|||
@ApiModelProperty(value = "车架号") |
|||
private String vinNo; |
|||
@ApiModelProperty(value = "车型名称") |
|||
private String modelName; |
|||
@ApiModelProperty(value = "入库日期") |
|||
private Date inboundDate; |
|||
@ApiModelProperty(value = "入库价") |
|||
private String inboundPrice; |
|||
} |
@ -0,0 +1,29 @@ |
|||
package com.yxt.anrui.scm.api.scmvehicleactualsales; |
|||
|
|||
import com.yxt.anrui.scm.api.scmvehicleactualdetails.ScmVehicleActualDetailsVo; |
|||
import com.yxt.common.core.vo.Vo; |
|||
import io.swagger.annotations.ApiModelProperty; |
|||
import lombok.Data; |
|||
|
|||
import java.util.ArrayList; |
|||
import java.util.List; |
|||
|
|||
/** |
|||
* @Author dimengzhe |
|||
* @Date 2022/4/9 11:28 |
|||
* @Description |
|||
*/ |
|||
@Data |
|||
public class ScmVehicleActualSalesDetailsVo implements Vo { |
|||
private static final long serialVersionUID = -3110309934818922020L; |
|||
@ApiModelProperty(value = "未售买断sid") |
|||
private String sid; |
|||
@ApiModelProperty(value = "申请人") |
|||
private String applicationName; |
|||
@ApiModelProperty(value = "申请日期") |
|||
private String createTime; |
|||
@ApiModelProperty(value = "买断原因") |
|||
private String reason; |
|||
@ApiModelProperty(value = "车辆列表") |
|||
private List<ScmVehicleActualDetailsVo> voList = new ArrayList<>(); |
|||
} |
Loading…
Reference in new issue