|
@@ -1,17 +1,28 @@
|
|
package com.fdkankan.sale.vo.response;
|
|
package com.fdkankan.sale.vo.response;
|
|
|
|
|
|
|
|
+import com.alibaba.fastjson.JSONArray;
|
|
import com.fdkankan.sale.entity.*;
|
|
import com.fdkankan.sale.entity.*;
|
|
import lombok.Data;
|
|
import lombok.Data;
|
|
|
|
|
|
@Data
|
|
@Data
|
|
public class RepairLogVo extends RepairLog {
|
|
public class RepairLogVo extends RepairLog {
|
|
|
|
+
|
|
private String sysUserName;
|
|
private String sysUserName;
|
|
|
|
|
|
private OrderReceiving orderReceiving;
|
|
private OrderReceiving orderReceiving;
|
|
|
|
|
|
- private CheckRegisterVo checkRegisterVo;
|
|
|
|
|
|
+ private RepairRegisterVo repairRegisterVo;
|
|
|
|
|
|
private Customer customer;
|
|
private Customer customer;
|
|
|
|
|
|
private CustomerAddress customerAddress;
|
|
private CustomerAddress customerAddress;
|
|
|
|
+
|
|
|
|
+ private JSONArray imagesInfo;
|
|
|
|
+
|
|
|
|
+ public JSONArray getImagesInfo() {
|
|
|
|
+ if(imagesInfo == null){
|
|
|
|
+ return new JSONArray();
|
|
|
|
+ }
|
|
|
|
+ return imagesInfo;
|
|
|
|
+ }
|
|
}
|
|
}
|