Xiewj 3 سال پیش
والد
کامیت
8ddb084b9b

+ 9 - 0
sxz-modules/src/main/java/com/fdkk/sxz/entity/RenovationPartsDetailEntity.java

@@ -2,6 +2,7 @@ package com.fdkk.sxz.entity;
 
 import com.baomidou.mybatisplus.annotation.TableField;
 import com.baomidou.mybatisplus.annotation.TableName;
+import io.swagger.annotations.ApiModelProperty;
 import lombok.Data;
 
 import java.util.Date;
@@ -85,4 +86,12 @@ public class RenovationPartsDetailEntity extends BaseEntity {
      */
     @TableField("bird_path")
     private String birdPath;
+
+
+    @ApiModelProperty(value = "线下版本使用-style", name = "style")
+    @TableField("style")
+    private Integer style;
+    @ApiModelProperty(value = "线下版本使用-dlc", name = "dlc")
+    @TableField("dlc")
+    private String dlc;
 }

+ 4 - 1
sxz-modules/src/main/java/com/fdkk/sxz/vo/request/RequestRenovationPartsDetailManager.java

@@ -107,5 +107,8 @@ public class RequestRenovationPartsDetailManager implements Serializable {
     private Integer facesNum;
     @ApiModelProperty(value = "最终obj模型大小", name = "obj_size")
     private Integer objSize;
-
+    @ApiModelProperty(value = "线下版本使用-style", name = "style")
+    private Integer style;
+    @ApiModelProperty(value = "线下版本使用-dlc", name = "dlc")
+    private String dlc;
 }