Commit 88c6a2707fbefccc3cbf76b9f927867d3f91cae7

Authored by guzijian
1 parent ea295712

feat: 新增订单字段回显

trash-admin/src/main/resources/application-dev.yml
... ... @@ -9,8 +9,9 @@ trash:
9 9 # 实例演示开关
10 10 demoEnabled: true
11 11 # 文件路径 示例( Windows配置D:/trash/uploadPath,Linux配置 /home/trash/uploadPath,存储桶 trash/uploadPath,nginx配置 /trash/upload)
  12 + profile: D:/trash/uploadPath
12 13 # profile: E:/trash/uploadPath
13   - profile: F:/work/project/Documents/uploadPath/trash
  14 +# profile: F:/work/project/Documents/uploadPath/trash
14 15 # 获取ip地址开关
15 16 addressEnabled: false
16 17 # 验证码类型 math 数组计算 char 字符验证
... ...
trash-garbage/src/main/java/com/trash/garbage/pojo/vo/OrderDetailVo.java
... ... @@ -18,6 +18,7 @@ public class OrderDetailVo {
18 18  
19 19 private Integer garEvaluateFlag;
20 20 private Boolean garHandleEvaluateFlag;
  21 + private String garOrderCarType;
21 22 /**
22 23 * 订单地址
23 24 */
... ...