|
@@ -6,6 +6,7 @@ import lombok.Getter;
|
|
|
import lombok.Setter;
|
|
|
|
|
|
import javax.validation.constraints.NotNull;
|
|
|
+import java.math.BigDecimal;
|
|
|
|
|
|
@Getter
|
|
|
@Setter
|
|
@@ -33,4 +34,20 @@ public class UnitDictBrandModelUpdateDto {
|
|
|
// 描述
|
|
|
@ApiModelProperty("描述")
|
|
|
private String description;
|
|
|
+
|
|
|
+ // 滚动数量
|
|
|
+ @ApiModelProperty("滚动数量")
|
|
|
+ private BigDecimal rollsNumbe;
|
|
|
+
|
|
|
+ // 滚动直径
|
|
|
+ @ApiModelProperty("滚动直径")
|
|
|
+ private BigDecimal rollsDiameter;
|
|
|
+
|
|
|
+ // 圆直径
|
|
|
+ @ApiModelProperty("描圆直径述")
|
|
|
+ private BigDecimal circleDiameter;
|
|
|
+
|
|
|
+ // 接触角
|
|
|
+ @ApiModelProperty("接触角")
|
|
|
+ private BigDecimal thetaDeg;
|
|
|
}
|