6 changed files with 73 additions and 43 deletions
@ -0,0 +1,24 @@ |
|||||
|
package com.yxt.anrui.buscenter.api.busdeliveredapply; |
||||
|
|
||||
|
import com.yxt.common.core.query.Query; |
||||
|
import io.swagger.annotations.ApiModelProperty; |
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.util.ArrayList; |
||||
|
import java.util.List; |
||||
|
|
||||
|
/** |
||||
|
* @Author dimengzhe |
||||
|
* @Date 2022/5/5 11:20 |
||||
|
* @Description |
||||
|
*/ |
||||
|
@Data |
||||
|
public class CheckingApplyQuery implements Query { |
||||
|
private static final long serialVersionUID = -2617877355863699165L; |
||||
|
|
||||
|
@ApiModelProperty(value = "车辆申请集合") |
||||
|
private BusDeliveredApplyDetailVo detailVo; |
||||
|
|
||||
|
@ApiModelProperty(value = "勾选的合同编号集合") |
||||
|
private List<String> stringList = new ArrayList<>(); |
||||
|
} |
Loading…
Reference in new issue