
14 changed files with 344 additions and 36 deletions
@ -0,0 +1,34 @@ |
|||
package com.yxt.anrui.as.api.asbusrepairbill.app; |
|||
|
|||
import lombok.Data; |
|||
|
|||
/** |
|||
* @author Fan |
|||
* @description |
|||
* @date 2024/8/5 11:36 |
|||
*/ |
|||
@Data |
|||
public class GoodsConfrimDetailsVo { |
|||
|
|||
/** |
|||
* 数量 |
|||
*/ |
|||
private String count; |
|||
/** |
|||
* 商品名称 |
|||
*/ |
|||
private String goodsName; |
|||
/** |
|||
* 图号 |
|||
*/ |
|||
private String goodsSkuCode; |
|||
/** |
|||
* 是否已确认 |
|||
*/ |
|||
private Boolean state; |
|||
/** |
|||
* 确认人 |
|||
*/ |
|||
private String user; |
|||
|
|||
} |
@ -0,0 +1,18 @@ |
|||
package com.yxt.anrui.as.api.asbusrepairbill.app; |
|||
|
|||
import com.yxt.common.core.query.Query; |
|||
import lombok.Data; |
|||
|
|||
/** |
|||
* @author Fan |
|||
* @description |
|||
* @date 2024/8/5 9:36 |
|||
*/ |
|||
@Data |
|||
public class GoodsConfrimListQuery implements Query { |
|||
|
|||
private String name; |
|||
private String orgPath; |
|||
private String userSid; |
|||
|
|||
} |
@ -0,0 +1,49 @@ |
|||
package com.yxt.anrui.as.api.asbusrepairbill.app; |
|||
|
|||
import lombok.Data; |
|||
|
|||
/** |
|||
* @author Fan |
|||
* @description |
|||
* @date 2024/8/5 9:35 |
|||
*/ |
|||
@Data |
|||
public class GoodsConfrimListVo { |
|||
/** |
|||
* 工单编号 |
|||
*/ |
|||
private String billId; |
|||
/** |
|||
* 工单类型 |
|||
*/ |
|||
private String billType; |
|||
/** |
|||
* 配件接收情况,5/10 |
|||
*/ |
|||
private String confrimInfo; |
|||
/** |
|||
* 客户名称 |
|||
*/ |
|||
private String customerName; |
|||
/** |
|||
* 进厂时间 |
|||
*/ |
|||
private String entryTime; |
|||
/** |
|||
* 维修工单sid |
|||
*/ |
|||
private String sid; |
|||
/** |
|||
* 科目 |
|||
*/ |
|||
private String subject; |
|||
/** |
|||
* 车牌号 |
|||
*/ |
|||
private String vehMark; |
|||
/** |
|||
* 是否可以勾选 |
|||
*/ |
|||
private Boolean isCanSubmit; |
|||
|
|||
} |
Loading…
Reference in new issue