|
@@ -0,0 +1,242 @@
|
|
|
+package com.hssx.cloudmodel.entity;
|
|
|
+
|
|
|
+import com.baomidou.mybatisplus.annotation.IdType;
|
|
|
+import com.baomidou.mybatisplus.extension.activerecord.Model;
|
|
|
+import com.baomidou.mybatisplus.annotation.TableId;
|
|
|
+import com.baomidou.mybatisplus.annotation.TableField;
|
|
|
+import java.io.Serializable;
|
|
|
+
|
|
|
+/**
|
|
|
+ * <p>
|
|
|
+ *
|
|
|
+ * </p>
|
|
|
+ *
|
|
|
+ * @author 吴涛涛
|
|
|
+ * @since 2019-10-28
|
|
|
+ */
|
|
|
+public class InjectionMolding extends Model<InjectionMolding> {
|
|
|
+
|
|
|
+ private static final long serialVersionUID=1L;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 模具注塑工艺信息表主键
|
|
|
+ */
|
|
|
+ @TableId(value = "injection_id", type = IdType.AUTO)
|
|
|
+ private Integer injectionId;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 材料牌号
|
|
|
+ */
|
|
|
+ @TableField("material_type")
|
|
|
+ private String materialType;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 颜色
|
|
|
+ */
|
|
|
+ @TableField("color")
|
|
|
+ private String color;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 模具尺寸
|
|
|
+ */
|
|
|
+ @TableField("size")
|
|
|
+ private String size;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 吨位
|
|
|
+ */
|
|
|
+ @TableField("tonnage")
|
|
|
+ private String tonnage;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 成品重量(单位:G)
|
|
|
+ */
|
|
|
+ @TableField("all_weight")
|
|
|
+ private Double allWeight;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 料头重量(单位:G)
|
|
|
+ */
|
|
|
+ @TableField("head_weight")
|
|
|
+ private Double headWeight;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 最大射胶量(单位:G)
|
|
|
+ */
|
|
|
+ @TableField("min_shot_weight")
|
|
|
+ private Integer minShotWeight;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 最小射胶量(单位:G)
|
|
|
+ */
|
|
|
+ @TableField("max_shot_weight")
|
|
|
+ private Integer maxShotWeight;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 成型周期
|
|
|
+ */
|
|
|
+ @TableField("cycle")
|
|
|
+ private Integer cycle;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 公模(动模)模温
|
|
|
+ */
|
|
|
+ @TableField("common_model_temperature")
|
|
|
+ private String commonModelTemperature;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 母模(定模)模温
|
|
|
+ */
|
|
|
+ @TableField("mother_model_temperature")
|
|
|
+ private String motherModelTemperature;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 模具id
|
|
|
+ */
|
|
|
+ @TableField("mould_id")
|
|
|
+ private Integer mouldId;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 设备编号
|
|
|
+ */
|
|
|
+ @TableField("equipment_no")
|
|
|
+ private String equipmentNo;
|
|
|
+
|
|
|
+
|
|
|
+ public Integer getInjectionId() {
|
|
|
+ return injectionId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setInjectionId(Integer injectionId) {
|
|
|
+ this.injectionId = injectionId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getMaterialType() {
|
|
|
+ return materialType;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setMaterialType(String materialType) {
|
|
|
+ this.materialType = materialType;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getColor() {
|
|
|
+ return color;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setColor(String color) {
|
|
|
+ this.color = color;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getSize() {
|
|
|
+ return size;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setSize(String size) {
|
|
|
+ this.size = size;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getTonnage() {
|
|
|
+ return tonnage;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setTonnage(String tonnage) {
|
|
|
+ this.tonnage = tonnage;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Double getAllWeight() {
|
|
|
+ return allWeight;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setAllWeight(Double allWeight) {
|
|
|
+ this.allWeight = allWeight;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Double getHeadWeight() {
|
|
|
+ return headWeight;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setHeadWeight(Double headWeight) {
|
|
|
+ this.headWeight = headWeight;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getMinShotWeight() {
|
|
|
+ return minShotWeight;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setMinShotWeight(Integer minShotWeight) {
|
|
|
+ this.minShotWeight = minShotWeight;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getMaxShotWeight() {
|
|
|
+ return maxShotWeight;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setMaxShotWeight(Integer maxShotWeight) {
|
|
|
+ this.maxShotWeight = maxShotWeight;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getCycle() {
|
|
|
+ return cycle;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCycle(Integer cycle) {
|
|
|
+ this.cycle = cycle;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getCommonModelTemperature() {
|
|
|
+ return commonModelTemperature;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCommonModelTemperature(String commonModelTemperature) {
|
|
|
+ this.commonModelTemperature = commonModelTemperature;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getMotherModelTemperature() {
|
|
|
+ return motherModelTemperature;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setMotherModelTemperature(String motherModelTemperature) {
|
|
|
+ this.motherModelTemperature = motherModelTemperature;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getMouldId() {
|
|
|
+ return mouldId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setMouldId(Integer mouldId) {
|
|
|
+ this.mouldId = mouldId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getEquipmentNo() {
|
|
|
+ return equipmentNo;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setEquipmentNo(String equipmentNo) {
|
|
|
+ this.equipmentNo = equipmentNo;
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ protected Serializable pkVal() {
|
|
|
+ return this.injectionId;
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public String toString() {
|
|
|
+ return "InjectionMolding{" +
|
|
|
+ "injectionId=" + injectionId +
|
|
|
+ ", materialType=" + materialType +
|
|
|
+ ", color=" + color +
|
|
|
+ ", size=" + size +
|
|
|
+ ", tonnage=" + tonnage +
|
|
|
+ ", allWeight=" + allWeight +
|
|
|
+ ", headWeight=" + headWeight +
|
|
|
+ ", minShotWeight=" + minShotWeight +
|
|
|
+ ", maxShotWeight=" + maxShotWeight +
|
|
|
+ ", cycle=" + cycle +
|
|
|
+ ", commonModelTemperature=" + commonModelTemperature +
|
|
|
+ ", motherModelTemperature=" + motherModelTemperature +
|
|
|
+ ", mouldId=" + mouldId +
|
|
|
+ ", equipmentNo=" + equipmentNo +
|
|
|
+ "}";
|
|
|
+ }
|
|
|
+}
|