|
|
@ -2,57 +2,58 @@ package com.os.mes.api.domain;
|
|
|
|
|
|
|
|
|
|
|
|
import com.fasterxml.jackson.annotation.JsonProperty;
|
|
|
|
import com.fasterxml.jackson.annotation.JsonProperty;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
import java.math.BigDecimal;
|
|
|
|
import java.util.HashMap;
|
|
|
|
import java.util.HashMap;
|
|
|
|
|
|
|
|
|
|
|
|
public class RecordData {
|
|
|
|
public class RecordData {
|
|
|
|
|
|
|
|
|
|
|
|
/** 输送带宽度(mm)*/
|
|
|
|
/** 输送带宽度(mm)*/
|
|
|
|
@JsonProperty("BeltWidth")
|
|
|
|
@JsonProperty("BeltWidth")
|
|
|
|
private double BeltWidth;
|
|
|
|
private BigDecimal BeltWidth;
|
|
|
|
|
|
|
|
|
|
|
|
/** 输送带布层 */
|
|
|
|
/** 输送带布层 */
|
|
|
|
@JsonProperty("BeltClothLayer")
|
|
|
|
@JsonProperty("BeltClothLayer")
|
|
|
|
private int BeltClothLayer;
|
|
|
|
private Long BeltClothLayer;
|
|
|
|
|
|
|
|
|
|
|
|
/** 客户要求输送带长度(m) */
|
|
|
|
/** 客户要求输送带长度(m) */
|
|
|
|
@JsonProperty("BeltRequiredLength")
|
|
|
|
@JsonProperty("BeltRequiredLength")
|
|
|
|
private double BeltRequiredLength;
|
|
|
|
private BigDecimal BeltRequiredLength;
|
|
|
|
|
|
|
|
|
|
|
|
/** 客户要求上胶厚度(mm) */
|
|
|
|
/** 客户要求上胶厚度(mm) */
|
|
|
|
@JsonProperty("GluingRequiredThickness")
|
|
|
|
@JsonProperty("GluingRequiredThickness")
|
|
|
|
private double GluingRequiredThickness;
|
|
|
|
private BigDecimal GluingRequiredThickness;
|
|
|
|
|
|
|
|
|
|
|
|
/** 客户要求下胶厚度(mm) */
|
|
|
|
/** 客户要求下胶厚度(mm) */
|
|
|
|
@JsonProperty("LowerGlueRequiredThickness")
|
|
|
|
@JsonProperty("LowerGlueRequiredThickness")
|
|
|
|
private double LowerGlueRequiredThickness;
|
|
|
|
private BigDecimal LowerGlueRequiredThickness;
|
|
|
|
|
|
|
|
|
|
|
|
/** 生产上胶厚度(mm) */
|
|
|
|
/** 生产上胶厚度(mm) */
|
|
|
|
@JsonProperty("ProductionGluingThickness")
|
|
|
|
@JsonProperty("ProductionGluingThickness")
|
|
|
|
private double ProductionGluingThickness;
|
|
|
|
private BigDecimal ProductionGluingThickness;
|
|
|
|
|
|
|
|
|
|
|
|
/** 上缓冲胶厚度(mm) */
|
|
|
|
/** 上缓冲胶厚度(mm) */
|
|
|
|
@JsonProperty("UpperBufferAdhesiveThickness")
|
|
|
|
@JsonProperty("UpperBufferAdhesiveThickness")
|
|
|
|
private double UpperBufferAdhesiveThickness;
|
|
|
|
private BigDecimal UpperBufferAdhesiveThickness;
|
|
|
|
|
|
|
|
|
|
|
|
/** 生产下胶厚度(mm) */
|
|
|
|
/** 生产下胶厚度(mm) */
|
|
|
|
@JsonProperty("ProductionLowerGlueThickness")
|
|
|
|
@JsonProperty("ProductionLowerGlueThickness")
|
|
|
|
private double ProductionLowerGlueThickness;
|
|
|
|
private BigDecimal ProductionLowerGlueThickness;
|
|
|
|
|
|
|
|
|
|
|
|
/** 下缓冲胶厚度(mm) */
|
|
|
|
/** 下缓冲胶厚度(mm) */
|
|
|
|
@JsonProperty("LowerBufferAdhesiveThickness")
|
|
|
|
@JsonProperty("LowerBufferAdhesiveThickness")
|
|
|
|
private double LowerBufferAdhesiveThickness;
|
|
|
|
private BigDecimal LowerBufferAdhesiveThickness;
|
|
|
|
|
|
|
|
|
|
|
|
/** 布胶厚度 */
|
|
|
|
/** 布胶厚度 */
|
|
|
|
@JsonProperty("ClothGlueThickness")
|
|
|
|
@JsonProperty("ClothGlueThickness")
|
|
|
|
private double ClothGlueThickness;
|
|
|
|
private BigDecimal ClothGlueThickness;
|
|
|
|
|
|
|
|
|
|
|
|
/** 小布用布布层 */
|
|
|
|
/** 小布用布布层 */
|
|
|
|
@JsonProperty("SmallClothFabricLayer")
|
|
|
|
@JsonProperty("SmallClothFabricLayer")
|
|
|
|
private double SmallClothFabricLayer;
|
|
|
|
private BigDecimal SmallClothFabricLayer;
|
|
|
|
|
|
|
|
|
|
|
|
/** 小布布料厚度(mm) */
|
|
|
|
/** 小布布料厚度(mm) */
|
|
|
|
@JsonProperty("SmallClothThickness")
|
|
|
|
@JsonProperty("SmallClothThickness")
|
|
|
|
private double SmallClothThickness;
|
|
|
|
private BigDecimal SmallClothThickness;
|
|
|
|
|
|
|
|
|
|
|
|
/** 是否需要每层加厚 */
|
|
|
|
/** 是否需要每层加厚 */
|
|
|
|
@JsonProperty("IsNeedThicken")
|
|
|
|
@JsonProperty("IsNeedThicken")
|
|
|
@ -60,35 +61,35 @@ public class RecordData {
|
|
|
|
|
|
|
|
|
|
|
|
/** 每层加厚厚度(mm) */
|
|
|
|
/** 每层加厚厚度(mm) */
|
|
|
|
@JsonProperty("EachLayerThickenThickness")
|
|
|
|
@JsonProperty("EachLayerThickenThickness")
|
|
|
|
private double EachLayerThickenThickness;
|
|
|
|
private BigDecimal EachLayerThickenThickness;
|
|
|
|
|
|
|
|
|
|
|
|
/** 额外加厚厚度(mm) */
|
|
|
|
/** 额外加厚厚度(mm) */
|
|
|
|
@JsonProperty("ExtraThickeningThickness")
|
|
|
|
@JsonProperty("ExtraThickeningThickness")
|
|
|
|
private double ExtraThickeningThickness;
|
|
|
|
private BigDecimal ExtraThickeningThickness;
|
|
|
|
|
|
|
|
|
|
|
|
/** 生产总厚度(mm) */
|
|
|
|
/** 生产总厚度(mm) */
|
|
|
|
@JsonProperty("TotalProductionThickness")
|
|
|
|
@JsonProperty("TotalProductionThickness")
|
|
|
|
private double TotalProductionThickness;
|
|
|
|
private BigDecimal TotalProductionThickness;
|
|
|
|
|
|
|
|
|
|
|
|
/** 压延追加厚度 */
|
|
|
|
/** 压延追加厚度 */
|
|
|
|
@JsonProperty("AdditionalThickness")
|
|
|
|
@JsonProperty("AdditionalThickness")
|
|
|
|
private double AdditionalThickness;
|
|
|
|
private BigDecimal AdditionalThickness;
|
|
|
|
|
|
|
|
|
|
|
|
/** 推荐垫铁厚度(mm) */
|
|
|
|
/** 推荐垫铁厚度(mm) */
|
|
|
|
@JsonProperty("RecommendedShimThickness")
|
|
|
|
@JsonProperty("RecommendedShimThickness")
|
|
|
|
private double RecommendedShimThickness;
|
|
|
|
private BigDecimal RecommendedShimThickness;
|
|
|
|
|
|
|
|
|
|
|
|
/** 推荐半成品宽度(mm) */
|
|
|
|
/** 推荐半成品宽度(mm) */
|
|
|
|
@JsonProperty("SemiFinishedProductWidth")
|
|
|
|
@JsonProperty("SemiFinishedProductWidth")
|
|
|
|
private double SemiFinishedProductWidth;
|
|
|
|
private BigDecimal SemiFinishedProductWidth;
|
|
|
|
|
|
|
|
|
|
|
|
/** 压延生产米数(m) */
|
|
|
|
/** 压延生产米数(m) */
|
|
|
|
@JsonProperty("RollingProductionMeters")
|
|
|
|
@JsonProperty("RollingProductionMeters")
|
|
|
|
private double RollingProductionMeters;
|
|
|
|
private BigDecimal RollingProductionMeters;
|
|
|
|
|
|
|
|
|
|
|
|
/** 推荐垫布宽度(mm) */
|
|
|
|
/** 推荐垫布宽度(mm) */
|
|
|
|
@JsonProperty("RecommendedPadWidth")
|
|
|
|
@JsonProperty("RecommendedPadWidth")
|
|
|
|
private double RecommendedPadWidth;
|
|
|
|
private BigDecimal RecommendedPadWidth;
|
|
|
|
|
|
|
|
|
|
|
|
/** 大布厂家 */
|
|
|
|
/** 大布厂家 */
|
|
|
|
@JsonProperty("BigFabricManufacturer")
|
|
|
|
@JsonProperty("BigFabricManufacturer")
|
|
|
@ -100,15 +101,15 @@ public class RecordData {
|
|
|
|
|
|
|
|
|
|
|
|
/** 预计布料使用量(m) */
|
|
|
|
/** 预计布料使用量(m) */
|
|
|
|
@JsonProperty("EstimatedFabricUsage")
|
|
|
|
@JsonProperty("EstimatedFabricUsage")
|
|
|
|
private double EstimatedFabricUsage;
|
|
|
|
private BigDecimal EstimatedFabricUsage;
|
|
|
|
|
|
|
|
|
|
|
|
/** 布宽度(mm) */
|
|
|
|
/** 布宽度(mm) */
|
|
|
|
@JsonProperty("ClothWidth")
|
|
|
|
@JsonProperty("ClothWidth")
|
|
|
|
private double ClothWidth;
|
|
|
|
private BigDecimal ClothWidth;
|
|
|
|
|
|
|
|
|
|
|
|
/** 布重量(kg) */
|
|
|
|
/** 布重量(kg) */
|
|
|
|
@JsonProperty("ClothWeight")
|
|
|
|
@JsonProperty("ClothWeight")
|
|
|
|
private double ClothWeight;
|
|
|
|
private BigDecimal ClothWeight;
|
|
|
|
|
|
|
|
|
|
|
|
/** 小布使用布料规格 */
|
|
|
|
/** 小布使用布料规格 */
|
|
|
|
@JsonProperty("SmallFabricSpecificationsDic")
|
|
|
|
@JsonProperty("SmallFabricSpecificationsDic")
|
|
|
@ -116,15 +117,15 @@ public class RecordData {
|
|
|
|
|
|
|
|
|
|
|
|
/** 小布宽度(mm) */
|
|
|
|
/** 小布宽度(mm) */
|
|
|
|
@JsonProperty("SmallClothWidth")
|
|
|
|
@JsonProperty("SmallClothWidth")
|
|
|
|
private double SmallClothWidth;
|
|
|
|
private BigDecimal SmallClothWidth;
|
|
|
|
|
|
|
|
|
|
|
|
/** 小布布料使用量(m) */
|
|
|
|
/** 小布布料使用量(m) */
|
|
|
|
@JsonProperty("SmallClothUsage")
|
|
|
|
@JsonProperty("SmallClothUsage")
|
|
|
|
private double SmallClothUsage;
|
|
|
|
private BigDecimal SmallClothUsage;
|
|
|
|
|
|
|
|
|
|
|
|
/** 小布用布重量(kg) */
|
|
|
|
/** 小布用布重量(kg) */
|
|
|
|
@JsonProperty("SmallClothWeight")
|
|
|
|
@JsonProperty("SmallClothWeight")
|
|
|
|
private double SmallClothWeight;
|
|
|
|
private BigDecimal SmallClothWeight;
|
|
|
|
|
|
|
|
|
|
|
|
/** 用胶工艺 */
|
|
|
|
/** 用胶工艺 */
|
|
|
|
@JsonProperty("GluingProcess")
|
|
|
|
@JsonProperty("GluingProcess")
|
|
|
@ -136,11 +137,11 @@ public class RecordData {
|
|
|
|
|
|
|
|
|
|
|
|
/** 上下胶系数 */
|
|
|
|
/** 上下胶系数 */
|
|
|
|
@JsonProperty("UpperLowerGlueCoefficient")
|
|
|
|
@JsonProperty("UpperLowerGlueCoefficient")
|
|
|
|
private double UpperLowerGlueCoefficient;
|
|
|
|
private BigDecimal UpperLowerGlueCoefficient;
|
|
|
|
|
|
|
|
|
|
|
|
/** 上下胶标准用胶量(kg) */
|
|
|
|
/** 上下胶标准用胶量(kg) */
|
|
|
|
@JsonProperty("UpperLowerGlueUsage")
|
|
|
|
@JsonProperty("UpperLowerGlueUsage")
|
|
|
|
private double UpperLowerGlueUsage;
|
|
|
|
private BigDecimal UpperLowerGlueUsage;
|
|
|
|
|
|
|
|
|
|
|
|
/** 下胶使用胶料 */
|
|
|
|
/** 下胶使用胶料 */
|
|
|
|
@JsonProperty("LowerGlue")
|
|
|
|
@JsonProperty("LowerGlue")
|
|
|
@ -148,11 +149,11 @@ public class RecordData {
|
|
|
|
|
|
|
|
|
|
|
|
/** 下胶系数 */
|
|
|
|
/** 下胶系数 */
|
|
|
|
@JsonProperty("LowerGlueCoefficient")
|
|
|
|
@JsonProperty("LowerGlueCoefficient")
|
|
|
|
private double LowerGlueCoefficient;
|
|
|
|
private BigDecimal LowerGlueCoefficient;
|
|
|
|
|
|
|
|
|
|
|
|
/** 下胶标准用胶量(kg) */
|
|
|
|
/** 下胶标准用胶量(kg) */
|
|
|
|
@JsonProperty("LowerGlueUsage")
|
|
|
|
@JsonProperty("LowerGlueUsage")
|
|
|
|
private double LowerGlueUsage;
|
|
|
|
private BigDecimal LowerGlueUsage;
|
|
|
|
|
|
|
|
|
|
|
|
/** 大布胶使用胶料 */
|
|
|
|
/** 大布胶使用胶料 */
|
|
|
|
@JsonProperty("LargeClothGlue")
|
|
|
|
@JsonProperty("LargeClothGlue")
|
|
|
@ -160,15 +161,15 @@ public class RecordData {
|
|
|
|
|
|
|
|
|
|
|
|
/** 大布胶系数 */
|
|
|
|
/** 大布胶系数 */
|
|
|
|
@JsonProperty("LargeClothGlueCoefficient")
|
|
|
|
@JsonProperty("LargeClothGlueCoefficient")
|
|
|
|
private double LargeClothGlueCoefficient;
|
|
|
|
private BigDecimal LargeClothGlueCoefficient;
|
|
|
|
|
|
|
|
|
|
|
|
/** 胶布标准用胶量(kg) */
|
|
|
|
/** 胶布标准用胶量(kg) */
|
|
|
|
@JsonProperty("LargeClothGlueUsage")
|
|
|
|
@JsonProperty("LargeClothGlueUsage")
|
|
|
|
private double LargeClothGlueUsage;
|
|
|
|
private BigDecimal LargeClothGlueUsage;
|
|
|
|
|
|
|
|
|
|
|
|
/** 上下缓冲胶标准用胶量(kg) */
|
|
|
|
/** 上下缓冲胶标准用胶量(kg) */
|
|
|
|
@JsonProperty("BufferGlueUsage")
|
|
|
|
@JsonProperty("BufferGlueUsage")
|
|
|
|
private double BufferGlueUsage;
|
|
|
|
private BigDecimal BufferGlueUsage;
|
|
|
|
|
|
|
|
|
|
|
|
/** 中间胶 */
|
|
|
|
/** 中间胶 */
|
|
|
|
@JsonProperty("MiddleGlue")
|
|
|
|
@JsonProperty("MiddleGlue")
|
|
|
@ -176,67 +177,67 @@ public class RecordData {
|
|
|
|
|
|
|
|
|
|
|
|
/** 中间胶系数 */
|
|
|
|
/** 中间胶系数 */
|
|
|
|
@JsonProperty("MiddleGlueCoefficient")
|
|
|
|
@JsonProperty("MiddleGlueCoefficient")
|
|
|
|
private double MiddleGlueCoefficient;
|
|
|
|
private BigDecimal MiddleGlueCoefficient;
|
|
|
|
|
|
|
|
|
|
|
|
/** 中间胶使用量 */
|
|
|
|
/** 中间胶使用量 */
|
|
|
|
@JsonProperty("MiddleGlueUsage")
|
|
|
|
@JsonProperty("MiddleGlueUsage")
|
|
|
|
private double MiddleGlueUsage;
|
|
|
|
private BigDecimal MiddleGlueUsage;
|
|
|
|
|
|
|
|
|
|
|
|
/** 小条宽度 */
|
|
|
|
/** 小条宽度 */
|
|
|
|
@JsonProperty("SmallBarWidth")
|
|
|
|
@JsonProperty("SmallBarWidth")
|
|
|
|
private double SmallBarWidth;
|
|
|
|
private BigDecimal SmallBarWidth;
|
|
|
|
|
|
|
|
|
|
|
|
/** 小条厚度 */
|
|
|
|
/** 小条厚度 */
|
|
|
|
@JsonProperty("SmallBarThickness")
|
|
|
|
@JsonProperty("SmallBarThickness")
|
|
|
|
private double SmallBarThickness;
|
|
|
|
private BigDecimal SmallBarThickness;
|
|
|
|
|
|
|
|
|
|
|
|
/** 小条标准使用量(kg) */
|
|
|
|
/** 小条标准使用量(kg) */
|
|
|
|
@JsonProperty("SmallBarStandardUsage")
|
|
|
|
@JsonProperty("SmallBarStandardUsage")
|
|
|
|
private double SmallBarStandardUsage;
|
|
|
|
private BigDecimal SmallBarStandardUsage;
|
|
|
|
|
|
|
|
|
|
|
|
/** 成型面积 */
|
|
|
|
/** 成型面积 */
|
|
|
|
@JsonProperty("FormingArea")
|
|
|
|
@JsonProperty("FormingArea")
|
|
|
|
private double FormingArea;
|
|
|
|
private BigDecimal FormingArea;
|
|
|
|
|
|
|
|
|
|
|
|
/** 压延包胶面积 */
|
|
|
|
/** 压延包胶面积 */
|
|
|
|
@JsonProperty("RollCoatingArea")
|
|
|
|
@JsonProperty("RollCoatingArea")
|
|
|
|
private double RollCoatingArea;
|
|
|
|
private BigDecimal RollCoatingArea;
|
|
|
|
|
|
|
|
|
|
|
|
/** 压延出布面积 */
|
|
|
|
/** 压延出布面积 */
|
|
|
|
@JsonProperty("RolledFabricArea")
|
|
|
|
@JsonProperty("RolledFabricArea")
|
|
|
|
private double RolledFabricArea;
|
|
|
|
private BigDecimal RolledFabricArea;
|
|
|
|
|
|
|
|
|
|
|
|
/** 硫化面积 */
|
|
|
|
/** 硫化面积 */
|
|
|
|
@JsonProperty("SulfurizationArea")
|
|
|
|
@JsonProperty("SulfurizationArea")
|
|
|
|
private double SulfurizationArea;
|
|
|
|
private BigDecimal SulfurizationArea;
|
|
|
|
|
|
|
|
|
|
|
|
/** 大布面积 */
|
|
|
|
/** 大布面积 */
|
|
|
|
@JsonProperty("LargeClothArea")
|
|
|
|
@JsonProperty("LargeClothArea")
|
|
|
|
private double LargeClothArea;
|
|
|
|
private BigDecimal LargeClothArea;
|
|
|
|
|
|
|
|
|
|
|
|
/** 小布面积 */
|
|
|
|
/** 小布面积 */
|
|
|
|
@JsonProperty("SmallClothArea")
|
|
|
|
@JsonProperty("SmallClothArea")
|
|
|
|
private double SmallClothArea;
|
|
|
|
private BigDecimal SmallClothArea;
|
|
|
|
|
|
|
|
|
|
|
|
/** 输送带总面积 */
|
|
|
|
/** 输送带总面积 */
|
|
|
|
@JsonProperty("BeltTotalArea")
|
|
|
|
@JsonProperty("BeltTotalArea")
|
|
|
|
private double BeltTotalArea;
|
|
|
|
private BigDecimal BeltTotalArea;
|
|
|
|
|
|
|
|
|
|
|
|
/** 裙边面积 */
|
|
|
|
/** 裙边面积 */
|
|
|
|
@JsonProperty("SkirtArea")
|
|
|
|
@JsonProperty("SkirtArea")
|
|
|
|
private double SkirtArea;
|
|
|
|
private BigDecimal SkirtArea;
|
|
|
|
|
|
|
|
|
|
|
|
/** 隔板面积 */
|
|
|
|
/** 隔板面积 */
|
|
|
|
@JsonProperty("PartitionArea")
|
|
|
|
@JsonProperty("PartitionArea")
|
|
|
|
private double PartitionArea;
|
|
|
|
private BigDecimal PartitionArea;
|
|
|
|
|
|
|
|
|
|
|
|
/** 挡边带总面积 */
|
|
|
|
/** 挡边带总面积 */
|
|
|
|
@JsonProperty("EdgeBandingTotalArea")
|
|
|
|
@JsonProperty("EdgeBandingTotalArea")
|
|
|
|
private double EdgeBandingTotalArea;
|
|
|
|
private BigDecimal EdgeBandingTotalArea;
|
|
|
|
|
|
|
|
|
|
|
|
/** 钢丝绳输送带工资总面积 */
|
|
|
|
/** 钢丝绳输送带工资总面积 */
|
|
|
|
@JsonProperty("WireropeBeltTotalArea")
|
|
|
|
@JsonProperty("WireropeBeltTotalArea")
|
|
|
|
private double WireropeBeltTotalArea;
|
|
|
|
private BigDecimal WireropeBeltTotalArea;
|
|
|
|
|
|
|
|
|
|
|
|
/** 下单日期 */
|
|
|
|
/** 下单日期 */
|
|
|
|
@JsonProperty("OrderDate")
|
|
|
|
@JsonProperty("OrderDate")
|
|
|
@ -278,99 +279,99 @@ public class RecordData {
|
|
|
|
@JsonProperty("UsingRawMaterials")
|
|
|
|
@JsonProperty("UsingRawMaterials")
|
|
|
|
private String UsingRawMaterials;
|
|
|
|
private String UsingRawMaterials;
|
|
|
|
|
|
|
|
|
|
|
|
public double getBeltWidth() {
|
|
|
|
public BigDecimal getBeltWidth() {
|
|
|
|
return BeltWidth;
|
|
|
|
return BeltWidth;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setBeltWidth(double beltWidth) {
|
|
|
|
public void setBeltWidth(BigDecimal beltWidth) {
|
|
|
|
BeltWidth = beltWidth;
|
|
|
|
BeltWidth = beltWidth;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public int getBeltClothLayer() {
|
|
|
|
public Long getBeltClothLayer() {
|
|
|
|
return BeltClothLayer;
|
|
|
|
return BeltClothLayer;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setBeltClothLayer(int beltClothLayer) {
|
|
|
|
public void setBeltClothLayer(Long beltClothLayer) {
|
|
|
|
BeltClothLayer = beltClothLayer;
|
|
|
|
BeltClothLayer = beltClothLayer;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public double getBeltRequiredLength() {
|
|
|
|
public BigDecimal getBeltRequiredLength() {
|
|
|
|
return BeltRequiredLength;
|
|
|
|
return BeltRequiredLength;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setBeltRequiredLength(double beltRequiredLength) {
|
|
|
|
public void setBeltRequiredLength(BigDecimal beltRequiredLength) {
|
|
|
|
BeltRequiredLength = beltRequiredLength;
|
|
|
|
BeltRequiredLength = beltRequiredLength;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public double getGluingRequiredThickness() {
|
|
|
|
public BigDecimal getGluingRequiredThickness() {
|
|
|
|
return GluingRequiredThickness;
|
|
|
|
return GluingRequiredThickness;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setGluingRequiredThickness(double gluingRequiredThickness) {
|
|
|
|
public void setGluingRequiredThickness(BigDecimal gluingRequiredThickness) {
|
|
|
|
GluingRequiredThickness = gluingRequiredThickness;
|
|
|
|
GluingRequiredThickness = gluingRequiredThickness;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public double getLowerGlueRequiredThickness() {
|
|
|
|
public BigDecimal getLowerGlueRequiredThickness() {
|
|
|
|
return LowerGlueRequiredThickness;
|
|
|
|
return LowerGlueRequiredThickness;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setLowerGlueRequiredThickness(double lowerGlueRequiredThickness) {
|
|
|
|
public void setLowerGlueRequiredThickness(BigDecimal lowerGlueRequiredThickness) {
|
|
|
|
LowerGlueRequiredThickness = lowerGlueRequiredThickness;
|
|
|
|
LowerGlueRequiredThickness = lowerGlueRequiredThickness;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public double getProductionGluingThickness() {
|
|
|
|
public BigDecimal getProductionGluingThickness() {
|
|
|
|
return ProductionGluingThickness;
|
|
|
|
return ProductionGluingThickness;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setProductionGluingThickness(double productionGluingThickness) {
|
|
|
|
public void setProductionGluingThickness(BigDecimal productionGluingThickness) {
|
|
|
|
ProductionGluingThickness = productionGluingThickness;
|
|
|
|
ProductionGluingThickness = productionGluingThickness;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public double getUpperBufferAdhesiveThickness() {
|
|
|
|
public BigDecimal getUpperBufferAdhesiveThickness() {
|
|
|
|
return UpperBufferAdhesiveThickness;
|
|
|
|
return UpperBufferAdhesiveThickness;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setUpperBufferAdhesiveThickness(double upperBufferAdhesiveThickness) {
|
|
|
|
public void setUpperBufferAdhesiveThickness(BigDecimal upperBufferAdhesiveThickness) {
|
|
|
|
UpperBufferAdhesiveThickness = upperBufferAdhesiveThickness;
|
|
|
|
UpperBufferAdhesiveThickness = upperBufferAdhesiveThickness;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public double getProductionLowerGlueThickness() {
|
|
|
|
public BigDecimal getProductionLowerGlueThickness() {
|
|
|
|
return ProductionLowerGlueThickness;
|
|
|
|
return ProductionLowerGlueThickness;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setProductionLowerGlueThickness(double productionLowerGlueThickness) {
|
|
|
|
public void setProductionLowerGlueThickness(BigDecimal productionLowerGlueThickness) {
|
|
|
|
ProductionLowerGlueThickness = productionLowerGlueThickness;
|
|
|
|
ProductionLowerGlueThickness = productionLowerGlueThickness;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public double getLowerBufferAdhesiveThickness() {
|
|
|
|
public BigDecimal getLowerBufferAdhesiveThickness() {
|
|
|
|
return LowerBufferAdhesiveThickness;
|
|
|
|
return LowerBufferAdhesiveThickness;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setLowerBufferAdhesiveThickness(double lowerBufferAdhesiveThickness) {
|
|
|
|
public void setLowerBufferAdhesiveThickness(BigDecimal lowerBufferAdhesiveThickness) {
|
|
|
|
LowerBufferAdhesiveThickness = lowerBufferAdhesiveThickness;
|
|
|
|
LowerBufferAdhesiveThickness = lowerBufferAdhesiveThickness;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public double getClothGlueThickness() {
|
|
|
|
public BigDecimal getClothGlueThickness() {
|
|
|
|
return ClothGlueThickness;
|
|
|
|
return ClothGlueThickness;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setClothGlueThickness(double clothGlueThickness) {
|
|
|
|
public void setClothGlueThickness(BigDecimal clothGlueThickness) {
|
|
|
|
ClothGlueThickness = clothGlueThickness;
|
|
|
|
ClothGlueThickness = clothGlueThickness;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public double getSmallClothFabricLayer() {
|
|
|
|
public BigDecimal getSmallClothFabricLayer() {
|
|
|
|
return SmallClothFabricLayer;
|
|
|
|
return SmallClothFabricLayer;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setSmallClothFabricLayer(double smallClothFabricLayer) {
|
|
|
|
public void setSmallClothFabricLayer(BigDecimal smallClothFabricLayer) {
|
|
|
|
SmallClothFabricLayer = smallClothFabricLayer;
|
|
|
|
SmallClothFabricLayer = smallClothFabricLayer;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public double getSmallClothThickness() {
|
|
|
|
public BigDecimal getSmallClothThickness() {
|
|
|
|
return SmallClothThickness;
|
|
|
|
return SmallClothThickness;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setSmallClothThickness(double smallClothThickness) {
|
|
|
|
public void setSmallClothThickness(BigDecimal smallClothThickness) {
|
|
|
|
SmallClothThickness = smallClothThickness;
|
|
|
|
SmallClothThickness = smallClothThickness;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
@ -382,67 +383,67 @@ public class RecordData {
|
|
|
|
IsNeedThicken = isNeedThicken;
|
|
|
|
IsNeedThicken = isNeedThicken;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public double getEachLayerThickenThickness() {
|
|
|
|
public BigDecimal getEachLayerThickenThickness() {
|
|
|
|
return EachLayerThickenThickness;
|
|
|
|
return EachLayerThickenThickness;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setEachLayerThickenThickness(double eachLayerThickenThickness) {
|
|
|
|
public void setEachLayerThickenThickness(BigDecimal eachLayerThickenThickness) {
|
|
|
|
EachLayerThickenThickness = eachLayerThickenThickness;
|
|
|
|
EachLayerThickenThickness = eachLayerThickenThickness;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public double getExtraThickeningThickness() {
|
|
|
|
public BigDecimal getExtraThickeningThickness() {
|
|
|
|
return ExtraThickeningThickness;
|
|
|
|
return ExtraThickeningThickness;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setExtraThickeningThickness(double extraThickeningThickness) {
|
|
|
|
public void setExtraThickeningThickness(BigDecimal extraThickeningThickness) {
|
|
|
|
ExtraThickeningThickness = extraThickeningThickness;
|
|
|
|
ExtraThickeningThickness = extraThickeningThickness;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public double getTotalProductionThickness() {
|
|
|
|
public BigDecimal getTotalProductionThickness() {
|
|
|
|
return TotalProductionThickness;
|
|
|
|
return TotalProductionThickness;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setTotalProductionThickness(double totalProductionThickness) {
|
|
|
|
public void setTotalProductionThickness(BigDecimal totalProductionThickness) {
|
|
|
|
TotalProductionThickness = totalProductionThickness;
|
|
|
|
TotalProductionThickness = totalProductionThickness;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public double getAdditionalThickness() {
|
|
|
|
public BigDecimal getAdditionalThickness() {
|
|
|
|
return AdditionalThickness;
|
|
|
|
return AdditionalThickness;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setAdditionalThickness(double additionalThickness) {
|
|
|
|
public void setAdditionalThickness(BigDecimal additionalThickness) {
|
|
|
|
AdditionalThickness = additionalThickness;
|
|
|
|
AdditionalThickness = additionalThickness;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public double getRecommendedShimThickness() {
|
|
|
|
public BigDecimal getRecommendedShimThickness() {
|
|
|
|
return RecommendedShimThickness;
|
|
|
|
return RecommendedShimThickness;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setRecommendedShimThickness(double recommendedShimThickness) {
|
|
|
|
public void setRecommendedShimThickness(BigDecimal recommendedShimThickness) {
|
|
|
|
RecommendedShimThickness = recommendedShimThickness;
|
|
|
|
RecommendedShimThickness = recommendedShimThickness;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public double getSemiFinishedProductWidth() {
|
|
|
|
public BigDecimal getSemiFinishedProductWidth() {
|
|
|
|
return SemiFinishedProductWidth;
|
|
|
|
return SemiFinishedProductWidth;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setSemiFinishedProductWidth(double semiFinishedProductWidth) {
|
|
|
|
public void setSemiFinishedProductWidth(BigDecimal semiFinishedProductWidth) {
|
|
|
|
SemiFinishedProductWidth = semiFinishedProductWidth;
|
|
|
|
SemiFinishedProductWidth = semiFinishedProductWidth;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public double getRollingProductionMeters() {
|
|
|
|
public BigDecimal getRollingProductionMeters() {
|
|
|
|
return RollingProductionMeters;
|
|
|
|
return RollingProductionMeters;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setRollingProductionMeters(double rollingProductionMeters) {
|
|
|
|
public void setRollingProductionMeters(BigDecimal rollingProductionMeters) {
|
|
|
|
RollingProductionMeters = rollingProductionMeters;
|
|
|
|
RollingProductionMeters = rollingProductionMeters;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public double getRecommendedPadWidth() {
|
|
|
|
public BigDecimal getRecommendedPadWidth() {
|
|
|
|
return RecommendedPadWidth;
|
|
|
|
return RecommendedPadWidth;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setRecommendedPadWidth(double recommendedPadWidth) {
|
|
|
|
public void setRecommendedPadWidth(BigDecimal recommendedPadWidth) {
|
|
|
|
RecommendedPadWidth = recommendedPadWidth;
|
|
|
|
RecommendedPadWidth = recommendedPadWidth;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
@ -462,27 +463,27 @@ public class RecordData {
|
|
|
|
FabricSpecifications = fabricSpecifications;
|
|
|
|
FabricSpecifications = fabricSpecifications;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public double getEstimatedFabricUsage() {
|
|
|
|
public BigDecimal getEstimatedFabricUsage() {
|
|
|
|
return EstimatedFabricUsage;
|
|
|
|
return EstimatedFabricUsage;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setEstimatedFabricUsage(double estimatedFabricUsage) {
|
|
|
|
public void setEstimatedFabricUsage(BigDecimal estimatedFabricUsage) {
|
|
|
|
EstimatedFabricUsage = estimatedFabricUsage;
|
|
|
|
EstimatedFabricUsage = estimatedFabricUsage;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public double getClothWidth() {
|
|
|
|
public BigDecimal getClothWidth() {
|
|
|
|
return ClothWidth;
|
|
|
|
return ClothWidth;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setClothWidth(double clothWidth) {
|
|
|
|
public void setClothWidth(BigDecimal clothWidth) {
|
|
|
|
ClothWidth = clothWidth;
|
|
|
|
ClothWidth = clothWidth;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public double getClothWeight() {
|
|
|
|
public BigDecimal getClothWeight() {
|
|
|
|
return ClothWeight;
|
|
|
|
return ClothWeight;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setClothWeight(double clothWeight) {
|
|
|
|
public void setClothWeight(BigDecimal clothWeight) {
|
|
|
|
ClothWeight = clothWeight;
|
|
|
|
ClothWeight = clothWeight;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
@ -494,27 +495,27 @@ public class RecordData {
|
|
|
|
SmallFabricSpecificationsDic = smallFabricSpecificationsDic;
|
|
|
|
SmallFabricSpecificationsDic = smallFabricSpecificationsDic;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public double getSmallClothWidth() {
|
|
|
|
public BigDecimal getSmallClothWidth() {
|
|
|
|
return SmallClothWidth;
|
|
|
|
return SmallClothWidth;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setSmallClothWidth(double smallClothWidth) {
|
|
|
|
public void setSmallClothWidth(BigDecimal smallClothWidth) {
|
|
|
|
SmallClothWidth = smallClothWidth;
|
|
|
|
SmallClothWidth = smallClothWidth;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public double getSmallClothUsage() {
|
|
|
|
public BigDecimal getSmallClothUsage() {
|
|
|
|
return SmallClothUsage;
|
|
|
|
return SmallClothUsage;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setSmallClothUsage(double smallClothUsage) {
|
|
|
|
public void setSmallClothUsage(BigDecimal smallClothUsage) {
|
|
|
|
SmallClothUsage = smallClothUsage;
|
|
|
|
SmallClothUsage = smallClothUsage;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public double getSmallClothWeight() {
|
|
|
|
public BigDecimal getSmallClothWeight() {
|
|
|
|
return SmallClothWeight;
|
|
|
|
return SmallClothWeight;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setSmallClothWeight(double smallClothWeight) {
|
|
|
|
public void setSmallClothWeight(BigDecimal smallClothWeight) {
|
|
|
|
SmallClothWeight = smallClothWeight;
|
|
|
|
SmallClothWeight = smallClothWeight;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
@ -534,19 +535,19 @@ public class RecordData {
|
|
|
|
UpperLowerGlue = upperLowerGlue;
|
|
|
|
UpperLowerGlue = upperLowerGlue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public double getUpperLowerGlueCoefficient() {
|
|
|
|
public BigDecimal getUpperLowerGlueCoefficient() {
|
|
|
|
return UpperLowerGlueCoefficient;
|
|
|
|
return UpperLowerGlueCoefficient;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setUpperLowerGlueCoefficient(double upperLowerGlueCoefficient) {
|
|
|
|
public void setUpperLowerGlueCoefficient(BigDecimal upperLowerGlueCoefficient) {
|
|
|
|
UpperLowerGlueCoefficient = upperLowerGlueCoefficient;
|
|
|
|
UpperLowerGlueCoefficient = upperLowerGlueCoefficient;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public double getUpperLowerGlueUsage() {
|
|
|
|
public BigDecimal getUpperLowerGlueUsage() {
|
|
|
|
return UpperLowerGlueUsage;
|
|
|
|
return UpperLowerGlueUsage;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setUpperLowerGlueUsage(double upperLowerGlueUsage) {
|
|
|
|
public void setUpperLowerGlueUsage(BigDecimal upperLowerGlueUsage) {
|
|
|
|
UpperLowerGlueUsage = upperLowerGlueUsage;
|
|
|
|
UpperLowerGlueUsage = upperLowerGlueUsage;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
@ -558,19 +559,19 @@ public class RecordData {
|
|
|
|
LowerGlue = lowerGlue;
|
|
|
|
LowerGlue = lowerGlue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public double getLowerGlueCoefficient() {
|
|
|
|
public BigDecimal getLowerGlueCoefficient() {
|
|
|
|
return LowerGlueCoefficient;
|
|
|
|
return LowerGlueCoefficient;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setLowerGlueCoefficient(double lowerGlueCoefficient) {
|
|
|
|
public void setLowerGlueCoefficient(BigDecimal lowerGlueCoefficient) {
|
|
|
|
LowerGlueCoefficient = lowerGlueCoefficient;
|
|
|
|
LowerGlueCoefficient = lowerGlueCoefficient;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public double getLowerGlueUsage() {
|
|
|
|
public BigDecimal getLowerGlueUsage() {
|
|
|
|
return LowerGlueUsage;
|
|
|
|
return LowerGlueUsage;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setLowerGlueUsage(double lowerGlueUsage) {
|
|
|
|
public void setLowerGlueUsage(BigDecimal lowerGlueUsage) {
|
|
|
|
LowerGlueUsage = lowerGlueUsage;
|
|
|
|
LowerGlueUsage = lowerGlueUsage;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
@ -582,27 +583,27 @@ public class RecordData {
|
|
|
|
LargeClothGlue = largeClothGlue;
|
|
|
|
LargeClothGlue = largeClothGlue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public double getLargeClothGlueCoefficient() {
|
|
|
|
public BigDecimal getLargeClothGlueCoefficient() {
|
|
|
|
return LargeClothGlueCoefficient;
|
|
|
|
return LargeClothGlueCoefficient;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setLargeClothGlueCoefficient(double largeClothGlueCoefficient) {
|
|
|
|
public void setLargeClothGlueCoefficient(BigDecimal largeClothGlueCoefficient) {
|
|
|
|
LargeClothGlueCoefficient = largeClothGlueCoefficient;
|
|
|
|
LargeClothGlueCoefficient = largeClothGlueCoefficient;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public double getLargeClothGlueUsage() {
|
|
|
|
public BigDecimal getLargeClothGlueUsage() {
|
|
|
|
return LargeClothGlueUsage;
|
|
|
|
return LargeClothGlueUsage;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setLargeClothGlueUsage(double largeClothGlueUsage) {
|
|
|
|
public void setLargeClothGlueUsage(BigDecimal largeClothGlueUsage) {
|
|
|
|
LargeClothGlueUsage = largeClothGlueUsage;
|
|
|
|
LargeClothGlueUsage = largeClothGlueUsage;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public double getBufferGlueUsage() {
|
|
|
|
public BigDecimal getBufferGlueUsage() {
|
|
|
|
return BufferGlueUsage;
|
|
|
|
return BufferGlueUsage;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setBufferGlueUsage(double bufferGlueUsage) {
|
|
|
|
public void setBufferGlueUsage(BigDecimal bufferGlueUsage) {
|
|
|
|
BufferGlueUsage = bufferGlueUsage;
|
|
|
|
BufferGlueUsage = bufferGlueUsage;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
@ -614,131 +615,131 @@ public class RecordData {
|
|
|
|
MiddleGlue = middleGlue;
|
|
|
|
MiddleGlue = middleGlue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public double getMiddleGlueCoefficient() {
|
|
|
|
public BigDecimal getMiddleGlueCoefficient() {
|
|
|
|
return MiddleGlueCoefficient;
|
|
|
|
return MiddleGlueCoefficient;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setMiddleGlueCoefficient(double middleGlueCoefficient) {
|
|
|
|
public void setMiddleGlueCoefficient(BigDecimal middleGlueCoefficient) {
|
|
|
|
MiddleGlueCoefficient = middleGlueCoefficient;
|
|
|
|
MiddleGlueCoefficient = middleGlueCoefficient;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public double getMiddleGlueUsage() {
|
|
|
|
public BigDecimal getMiddleGlueUsage() {
|
|
|
|
return MiddleGlueUsage;
|
|
|
|
return MiddleGlueUsage;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setMiddleGlueUsage(double middleGlueUsage) {
|
|
|
|
public void setMiddleGlueUsage(BigDecimal middleGlueUsage) {
|
|
|
|
MiddleGlueUsage = middleGlueUsage;
|
|
|
|
MiddleGlueUsage = middleGlueUsage;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public double getSmallBarWidth() {
|
|
|
|
public BigDecimal getSmallBarWidth() {
|
|
|
|
return SmallBarWidth;
|
|
|
|
return SmallBarWidth;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setSmallBarWidth(double smallBarWidth) {
|
|
|
|
public void setSmallBarWidth(BigDecimal smallBarWidth) {
|
|
|
|
SmallBarWidth = smallBarWidth;
|
|
|
|
SmallBarWidth = smallBarWidth;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public double getSmallBarThickness() {
|
|
|
|
public BigDecimal getSmallBarThickness() {
|
|
|
|
return SmallBarThickness;
|
|
|
|
return SmallBarThickness;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setSmallBarThickness(double smallBarThickness) {
|
|
|
|
public void setSmallBarThickness(BigDecimal smallBarThickness) {
|
|
|
|
SmallBarThickness = smallBarThickness;
|
|
|
|
SmallBarThickness = smallBarThickness;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public double getSmallBarStandardUsage() {
|
|
|
|
public BigDecimal getSmallBarStandardUsage() {
|
|
|
|
return SmallBarStandardUsage;
|
|
|
|
return SmallBarStandardUsage;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setSmallBarStandardUsage(double smallBarStandardUsage) {
|
|
|
|
public void setSmallBarStandardUsage(BigDecimal smallBarStandardUsage) {
|
|
|
|
SmallBarStandardUsage = smallBarStandardUsage;
|
|
|
|
SmallBarStandardUsage = smallBarStandardUsage;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public double getFormingArea() {
|
|
|
|
public BigDecimal getFormingArea() {
|
|
|
|
return FormingArea;
|
|
|
|
return FormingArea;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setFormingArea(double formingArea) {
|
|
|
|
public void setFormingArea(BigDecimal formingArea) {
|
|
|
|
FormingArea = formingArea;
|
|
|
|
FormingArea = formingArea;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public double getRollCoatingArea() {
|
|
|
|
public BigDecimal getRollCoatingArea() {
|
|
|
|
return RollCoatingArea;
|
|
|
|
return RollCoatingArea;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setRollCoatingArea(double rollCoatingArea) {
|
|
|
|
public void setRollCoatingArea(BigDecimal rollCoatingArea) {
|
|
|
|
RollCoatingArea = rollCoatingArea;
|
|
|
|
RollCoatingArea = rollCoatingArea;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public double getRolledFabricArea() {
|
|
|
|
public BigDecimal getRolledFabricArea() {
|
|
|
|
return RolledFabricArea;
|
|
|
|
return RolledFabricArea;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setRolledFabricArea(double rolledFabricArea) {
|
|
|
|
public void setRolledFabricArea(BigDecimal rolledFabricArea) {
|
|
|
|
RolledFabricArea = rolledFabricArea;
|
|
|
|
RolledFabricArea = rolledFabricArea;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public double getSulfurizationArea() {
|
|
|
|
public BigDecimal getSulfurizationArea() {
|
|
|
|
return SulfurizationArea;
|
|
|
|
return SulfurizationArea;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setSulfurizationArea(double sulfurizationArea) {
|
|
|
|
public void setSulfurizationArea(BigDecimal sulfurizationArea) {
|
|
|
|
SulfurizationArea = sulfurizationArea;
|
|
|
|
SulfurizationArea = sulfurizationArea;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public double getLargeClothArea() {
|
|
|
|
public BigDecimal getLargeClothArea() {
|
|
|
|
return LargeClothArea;
|
|
|
|
return LargeClothArea;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setLargeClothArea(double largeClothArea) {
|
|
|
|
public void setLargeClothArea(BigDecimal largeClothArea) {
|
|
|
|
LargeClothArea = largeClothArea;
|
|
|
|
LargeClothArea = largeClothArea;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public double getSmallClothArea() {
|
|
|
|
public BigDecimal getSmallClothArea() {
|
|
|
|
return SmallClothArea;
|
|
|
|
return SmallClothArea;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setSmallClothArea(double smallClothArea) {
|
|
|
|
public void setSmallClothArea(BigDecimal smallClothArea) {
|
|
|
|
SmallClothArea = smallClothArea;
|
|
|
|
SmallClothArea = smallClothArea;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public double getBeltTotalArea() {
|
|
|
|
public BigDecimal getBeltTotalArea() {
|
|
|
|
return BeltTotalArea;
|
|
|
|
return BeltTotalArea;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setBeltTotalArea(double beltTotalArea) {
|
|
|
|
public void setBeltTotalArea(BigDecimal beltTotalArea) {
|
|
|
|
BeltTotalArea = beltTotalArea;
|
|
|
|
BeltTotalArea = beltTotalArea;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public double getSkirtArea() {
|
|
|
|
public BigDecimal getSkirtArea() {
|
|
|
|
return SkirtArea;
|
|
|
|
return SkirtArea;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setSkirtArea(double skirtArea) {
|
|
|
|
public void setSkirtArea(BigDecimal skirtArea) {
|
|
|
|
SkirtArea = skirtArea;
|
|
|
|
SkirtArea = skirtArea;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public double getPartitionArea() {
|
|
|
|
public BigDecimal getPartitionArea() {
|
|
|
|
return PartitionArea;
|
|
|
|
return PartitionArea;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setPartitionArea(double partitionArea) {
|
|
|
|
public void setPartitionArea(BigDecimal partitionArea) {
|
|
|
|
PartitionArea = partitionArea;
|
|
|
|
PartitionArea = partitionArea;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public double getEdgeBandingTotalArea() {
|
|
|
|
public BigDecimal getEdgeBandingTotalArea() {
|
|
|
|
return EdgeBandingTotalArea;
|
|
|
|
return EdgeBandingTotalArea;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setEdgeBandingTotalArea(double edgeBandingTotalArea) {
|
|
|
|
public void setEdgeBandingTotalArea(BigDecimal edgeBandingTotalArea) {
|
|
|
|
EdgeBandingTotalArea = edgeBandingTotalArea;
|
|
|
|
EdgeBandingTotalArea = edgeBandingTotalArea;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public double getWireropeBeltTotalArea() {
|
|
|
|
public BigDecimal getWireropeBeltTotalArea() {
|
|
|
|
return WireropeBeltTotalArea;
|
|
|
|
return WireropeBeltTotalArea;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setWireropeBeltTotalArea(double wireropeBeltTotalArea) {
|
|
|
|
public void setWireropeBeltTotalArea(BigDecimal wireropeBeltTotalArea) {
|
|
|
|
WireropeBeltTotalArea = wireropeBeltTotalArea;
|
|
|
|
WireropeBeltTotalArea = wireropeBeltTotalArea;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|