
10 changed files with 191 additions and 13 deletions
@ -0,0 +1,32 @@ |
|||||
|
package com.yxt.anrui.as.api.asbusrepairinventorybill; |
||||
|
|
||||
|
import com.yxt.common.core.utils.ExportEntityMap; |
||||
|
import lombok.Data; |
||||
|
|
||||
|
/** |
||||
|
* @author Administrator |
||||
|
* @description |
||||
|
* @date 2023/11/13 9:34 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class AsBusrepairinventoryExportVo { |
||||
|
|
||||
|
@ExportEntityMap(CnName = "序号", EnName = "rankNo") |
||||
|
private Integer rankNo; |
||||
|
@ExportEntityMap(CnName = "单据编号", EnName = "billNo") |
||||
|
private String billNo; |
||||
|
@ExportEntityMap(CnName = "单据时间", EnName = "createTime") |
||||
|
private String createTime; |
||||
|
@ExportEntityMap(CnName = "维修工单编号", EnName = "sourceBillNo") |
||||
|
private String sourceBillNo; |
||||
|
@ExportEntityMap(CnName = "业务类型", EnName = "busTypeValue") |
||||
|
private String busTypeValue; |
||||
|
@ExportEntityMap(CnName = "操作人", EnName = "createByName") |
||||
|
private String createByName; |
||||
|
@ExportEntityMap(CnName = " 经办人", EnName = "warehouseManager") |
||||
|
private String warehouseManager; |
||||
|
@ExportEntityMap(CnName = "备注", EnName = "remarks") |
||||
|
private String remarks; |
||||
|
|
||||
|
|
||||
|
} |
Loading…
Reference in new issue