8 changed files with 196 additions and 12 deletions
@ -0,0 +1,51 @@ |
|||
package com.yxt.anrui.buscenter.api.bustransferrecords; |
|||
|
|||
import com.yxt.common.core.vo.Vo; |
|||
import io.swagger.annotations.ApiModelProperty; |
|||
import lombok.Data; |
|||
|
|||
import java.util.ArrayList; |
|||
import java.util.Date; |
|||
import java.util.List; |
|||
|
|||
/** |
|||
* @description: 发票 |
|||
* @author: dimengzhe |
|||
* @date: 2023/6/5 |
|||
**/ |
|||
@Data |
|||
public class BusRecordsInvoiceHgzVo implements Vo { |
|||
|
|||
@ApiModelProperty("车架号") |
|||
private String vinNo; |
|||
@ApiModelProperty("物品名称") |
|||
private String invoiceTitle; |
|||
@ApiModelProperty("移交数量") |
|||
private String invoiceType; |
|||
@ApiModelProperty("物品单位") |
|||
private String invoicingName; |
|||
@ApiModelProperty("移交部门") |
|||
private String transferDept; |
|||
@ApiModelProperty("移交人") |
|||
private String transferName; |
|||
@ApiModelProperty("移交备注") |
|||
private String transferRemarks; |
|||
@ApiModelProperty("移交附件") |
|||
private String transferFiles; |
|||
@ApiModelProperty("移交附件") |
|||
private List<String> filePathList = new ArrayList<>(); |
|||
@ApiModelProperty("接收部门") |
|||
private String receiveDept; |
|||
@ApiModelProperty("接收人") |
|||
private String receiveName; |
|||
@ApiModelProperty("接收时间") |
|||
private String receiveTime; |
|||
@ApiModelProperty("接收状态:0待接收,1已接收") |
|||
private String receiveState; |
|||
@ApiModelProperty("接收备注") |
|||
private String receiveRemarks; |
|||
@ApiModelProperty("接收附件") |
|||
private String receiveFiles; |
|||
@ApiModelProperty("接收附件") |
|||
private List<String> receiveFilesList = new ArrayList<>(); |
|||
} |
@ -0,0 +1,19 @@ |
|||
package com.yxt.anrui.buscenter.api.bustransferrecords; |
|||
|
|||
import com.yxt.common.core.query.Query; |
|||
import io.swagger.annotations.ApiModelProperty; |
|||
import lombok.Data; |
|||
|
|||
/** |
|||
* @description: |
|||
* @author: dimengzhe |
|||
* @date: 2023/6/5 |
|||
**/ |
|||
@Data |
|||
public class BusTransferRecordsHgzQuery implements Query { |
|||
|
|||
@ApiModelProperty("车辆sid") |
|||
private String vehSid; |
|||
@ApiModelProperty("组织全路径") |
|||
private String orgPath; |
|||
} |
@ -0,0 +1,36 @@ |
|||
package com.yxt.anrui.buscenter.api.bustransferrecords; |
|||
|
|||
import com.fasterxml.jackson.annotation.JsonIgnore; |
|||
import com.yxt.common.core.vo.Vo; |
|||
import io.swagger.annotations.ApiModelProperty; |
|||
import lombok.Data; |
|||
|
|||
import java.util.List; |
|||
|
|||
/** |
|||
* @description: |
|||
* @author: dimengzhe |
|||
* @date: 2023/6/5 |
|||
**/ |
|||
@Data |
|||
public class BusTransferRecordsHgzVo implements Vo { |
|||
|
|||
@ApiModelProperty("sid") |
|||
private String sid; |
|||
@ApiModelProperty("移交部门") |
|||
private String transferDept; |
|||
@ApiModelProperty("移交人") |
|||
private String transferName; |
|||
@ApiModelProperty("接收部门") |
|||
private String receiveDept; |
|||
@ApiModelProperty("接收人") |
|||
private String receiveName; |
|||
@ApiModelProperty("移交时间") |
|||
private String createTime; |
|||
@ApiModelProperty("接收状态:0待接收,1已接收") |
|||
private String receiveState; |
|||
@ApiModelProperty("车架号") |
|||
private String vinNo; |
|||
@ApiModelProperty("物品名称") |
|||
private String goodsName; |
|||
} |
Loading…
Reference in new issue