|
|
|
|
@ -6,9 +6,12 @@ package org.springblade.desk.quality.pojo.entity; |
|
|
|
|
import lombok.Data; |
|
|
|
|
import io.swagger.v3.oas.annotations.media.Schema; |
|
|
|
|
import com.baomidou.mybatisplus.annotation.TableName; |
|
|
|
|
|
|
|
|
|
import java.math.BigDecimal; |
|
|
|
|
|
|
|
|
|
import org.springblade.core.mp.base.BaseEntity; |
|
|
|
|
import lombok.EqualsAndHashCode; |
|
|
|
|
|
|
|
|
|
import java.io.Serial; |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
@ -23,179 +26,188 @@ import java.io.Serial; |
|
|
|
|
@EqualsAndHashCode(callSuper = true) |
|
|
|
|
public class RemindMsg extends BaseEntity { |
|
|
|
|
|
|
|
|
|
@Serial |
|
|
|
|
private static final long serialVersionUID = 1L; |
|
|
|
|
@Serial |
|
|
|
|
private static final long serialVersionUID = 1L; |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 编码 |
|
|
|
|
*/ |
|
|
|
|
public static final String COL_CODE = "CODE"; |
|
|
|
|
/** |
|
|
|
|
* 类型 |
|
|
|
|
*/ |
|
|
|
|
public static final String COL_REMIND_MSG_TYPE = "REMIND_MSG_TYPE"; |
|
|
|
|
/** |
|
|
|
|
* [零件]id |
|
|
|
|
*/ |
|
|
|
|
public static final String COL_PART_ID = "PART_ID"; |
|
|
|
|
/** |
|
|
|
|
* [零件]编码 |
|
|
|
|
*/ |
|
|
|
|
public static final String COL_PART_CODE = "PART_CODE"; |
|
|
|
|
/** |
|
|
|
|
* 是否热处理 |
|
|
|
|
*/ |
|
|
|
|
public static final String COL_IS_HEAT_TREATMENT = "IS_HEAT_TREATMENT"; |
|
|
|
|
/** |
|
|
|
|
* 是否镀后检验 |
|
|
|
|
*/ |
|
|
|
|
public static final String COL_IS_AFTER_PLATING = "IS_AFTER_PLATING"; |
|
|
|
|
/** |
|
|
|
|
* 质量等级 |
|
|
|
|
*/ |
|
|
|
|
public static final String COL_QUALITY_LEVEL = "QUALITY_LEVEL"; |
|
|
|
|
/** |
|
|
|
|
* 镀金检测 |
|
|
|
|
*/ |
|
|
|
|
public static final String COL_TEST_AU = "TEST_AU"; |
|
|
|
|
/** |
|
|
|
|
* 镀银检测 |
|
|
|
|
*/ |
|
|
|
|
public static final String COL_TEST_AG = "TEST_AG"; |
|
|
|
|
/** |
|
|
|
|
* 提醒内容 |
|
|
|
|
*/ |
|
|
|
|
public static final String COL_REMIND_CONTENT = "REMIND_CONTENT"; |
|
|
|
|
/** |
|
|
|
|
* 排序 |
|
|
|
|
*/ |
|
|
|
|
public static final String COL_SORT = "SORT"; |
|
|
|
|
/** |
|
|
|
|
* 备注 |
|
|
|
|
*/ |
|
|
|
|
public static final String COL_REMARK = "REMARK"; |
|
|
|
|
/** |
|
|
|
|
* 子[零件]id |
|
|
|
|
*/ |
|
|
|
|
public static final String COL_SUB_PART_ID = "SUB_PART_ID"; |
|
|
|
|
/** |
|
|
|
|
* 子[零件]编码 |
|
|
|
|
*/ |
|
|
|
|
public static final String COL_SUB_PART_CODE = "SUB_PART_CODE"; |
|
|
|
|
/** |
|
|
|
|
* 生产标识 |
|
|
|
|
*/ |
|
|
|
|
public static final String COL_PROD_FLAG_TEXT = "PROD_FLAG_TEXT"; |
|
|
|
|
/** |
|
|
|
|
* 参数1 |
|
|
|
|
*/ |
|
|
|
|
public static final String COL_PARAM_1 = "PARAM_1"; |
|
|
|
|
/** |
|
|
|
|
* 参数2 |
|
|
|
|
*/ |
|
|
|
|
public static final String COL_PARAM_2 = "PARAM_2"; |
|
|
|
|
/** |
|
|
|
|
* 参数3 |
|
|
|
|
*/ |
|
|
|
|
public static final String COL_PARAM_3 = "PARAM_3"; |
|
|
|
|
/** |
|
|
|
|
* 参数4 |
|
|
|
|
*/ |
|
|
|
|
public static final String COL_PARAM_4 = "PARAM_4"; |
|
|
|
|
/** |
|
|
|
|
* 编码 |
|
|
|
|
*/ |
|
|
|
|
public static final String COL_CODE = "CODE"; |
|
|
|
|
/** |
|
|
|
|
* 类型 |
|
|
|
|
*/ |
|
|
|
|
public static final String COL_REMIND_MSG_TYPE = "REMIND_MSG_TYPE"; |
|
|
|
|
/** |
|
|
|
|
* [零件]id |
|
|
|
|
*/ |
|
|
|
|
public static final String COL_PART_ID = "PART_ID"; |
|
|
|
|
/** |
|
|
|
|
* [零件]编码 |
|
|
|
|
*/ |
|
|
|
|
public static final String COL_PART_CODE = "PART_CODE"; |
|
|
|
|
/** |
|
|
|
|
* 是否热处理 |
|
|
|
|
*/ |
|
|
|
|
public static final String COL_IS_HEAT_TREATMENT = "IS_HEAT_TREATMENT"; |
|
|
|
|
/** |
|
|
|
|
* 是否镀后检验 |
|
|
|
|
*/ |
|
|
|
|
public static final String COL_IS_AFTER_PLATING = "IS_AFTER_PLATING"; |
|
|
|
|
/** |
|
|
|
|
* 质量等级 |
|
|
|
|
*/ |
|
|
|
|
public static final String COL_QUALITY_LEVEL = "QUALITY_LEVEL"; |
|
|
|
|
/** |
|
|
|
|
* 镀金检测 |
|
|
|
|
*/ |
|
|
|
|
public static final String COL_TEST_AU = "TEST_AU"; |
|
|
|
|
/** |
|
|
|
|
* 镀银检测 |
|
|
|
|
*/ |
|
|
|
|
public static final String COL_TEST_AG = "TEST_AG"; |
|
|
|
|
/** |
|
|
|
|
* 提醒内容 |
|
|
|
|
*/ |
|
|
|
|
public static final String COL_REMIND_CONTENT = "REMIND_CONTENT"; |
|
|
|
|
/** |
|
|
|
|
* 排序 |
|
|
|
|
*/ |
|
|
|
|
public static final String COL_SORT = "SORT"; |
|
|
|
|
/** |
|
|
|
|
* 备注 |
|
|
|
|
*/ |
|
|
|
|
public static final String COL_REMARK = "REMARK"; |
|
|
|
|
/** |
|
|
|
|
* 子[零件]id |
|
|
|
|
*/ |
|
|
|
|
public static final String COL_SUB_PART_ID = "SUB_PART_ID"; |
|
|
|
|
/** |
|
|
|
|
* 子[零件]编码 |
|
|
|
|
*/ |
|
|
|
|
public static final String COL_SUB_PART_CODE = "SUB_PART_CODE"; |
|
|
|
|
/** |
|
|
|
|
* 生产标识 |
|
|
|
|
*/ |
|
|
|
|
public static final String COL_PROD_FLAG_TEXT = "PROD_FLAG_TEXT"; |
|
|
|
|
/** |
|
|
|
|
* 参数1 |
|
|
|
|
*/ |
|
|
|
|
public static final String COL_PARAM_1 = "PARAM_1"; |
|
|
|
|
/** |
|
|
|
|
* 参数2 |
|
|
|
|
*/ |
|
|
|
|
public static final String COL_PARAM_2 = "PARAM_2"; |
|
|
|
|
/** |
|
|
|
|
* 参数3 |
|
|
|
|
*/ |
|
|
|
|
public static final String COL_PARAM_3 = "PARAM_3"; |
|
|
|
|
/** |
|
|
|
|
* 参数4 |
|
|
|
|
*/ |
|
|
|
|
public static final String COL_PARAM_4 = "PARAM_4"; |
|
|
|
|
/** |
|
|
|
|
* [零件]名称 |
|
|
|
|
*/ |
|
|
|
|
public static final String PART_NAME = "PART_NAME"; |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 编码 |
|
|
|
|
*/ |
|
|
|
|
@Schema(description = "编码") |
|
|
|
|
private String code; |
|
|
|
|
/** |
|
|
|
|
* 类型 |
|
|
|
|
*/ |
|
|
|
|
@Schema(description = "类型") |
|
|
|
|
private Long remindMsgType; |
|
|
|
|
/** |
|
|
|
|
* [零件]id |
|
|
|
|
*/ |
|
|
|
|
@Schema(description = "[零件]id") |
|
|
|
|
private Long partId; |
|
|
|
|
/** |
|
|
|
|
* [零件]编码 |
|
|
|
|
*/ |
|
|
|
|
@Schema(description = "[零件]编码") |
|
|
|
|
private String partCode; |
|
|
|
|
/** |
|
|
|
|
* 是否热处理 |
|
|
|
|
*/ |
|
|
|
|
@Schema(description = "是否热处理") |
|
|
|
|
private String isHeatTreatment; |
|
|
|
|
/** |
|
|
|
|
* 是否镀后检验 |
|
|
|
|
*/ |
|
|
|
|
@Schema(description = "是否镀后检验") |
|
|
|
|
private String isAfterPlating; |
|
|
|
|
/** |
|
|
|
|
* 质量等级 |
|
|
|
|
*/ |
|
|
|
|
@Schema(description = "质量等级") |
|
|
|
|
private String qualityLevel; |
|
|
|
|
/** |
|
|
|
|
* 镀金检测 |
|
|
|
|
*/ |
|
|
|
|
@Schema(description = "镀金检测") |
|
|
|
|
private String testAu; |
|
|
|
|
/** |
|
|
|
|
* 镀银检测 |
|
|
|
|
*/ |
|
|
|
|
@Schema(description = "镀银检测") |
|
|
|
|
private String testAg; |
|
|
|
|
/** |
|
|
|
|
* 提醒内容 |
|
|
|
|
*/ |
|
|
|
|
@Schema(description = "提醒内容") |
|
|
|
|
private String remindContent; |
|
|
|
|
/** |
|
|
|
|
* 排序 |
|
|
|
|
*/ |
|
|
|
|
@Schema(description = "排序") |
|
|
|
|
private Long sort; |
|
|
|
|
/** |
|
|
|
|
* 备注 |
|
|
|
|
*/ |
|
|
|
|
@Schema(description = "备注") |
|
|
|
|
private String remark; |
|
|
|
|
/** |
|
|
|
|
* 子[零件]id |
|
|
|
|
*/ |
|
|
|
|
@Schema(description = "子[零件]id") |
|
|
|
|
private Long subPartId; |
|
|
|
|
/** |
|
|
|
|
* 子[零件]编码 |
|
|
|
|
*/ |
|
|
|
|
@Schema(description = "子[零件]编码") |
|
|
|
|
private String subPartCode; |
|
|
|
|
/** |
|
|
|
|
* 生产标识 |
|
|
|
|
*/ |
|
|
|
|
@Schema(description = "生产标识") |
|
|
|
|
private String prodFlagText; |
|
|
|
|
/** |
|
|
|
|
* 参数1 |
|
|
|
|
*/ |
|
|
|
|
@Schema(description = "参数1") |
|
|
|
|
private String param1; |
|
|
|
|
/** |
|
|
|
|
* 参数2 |
|
|
|
|
*/ |
|
|
|
|
@Schema(description = "参数2") |
|
|
|
|
private String param2; |
|
|
|
|
/** |
|
|
|
|
* 参数3 |
|
|
|
|
*/ |
|
|
|
|
@Schema(description = "参数3") |
|
|
|
|
private String param3; |
|
|
|
|
/** |
|
|
|
|
* 参数4 |
|
|
|
|
*/ |
|
|
|
|
@Schema(description = "参数4") |
|
|
|
|
private String param4; |
|
|
|
|
/** |
|
|
|
|
* 编码 |
|
|
|
|
*/ |
|
|
|
|
@Schema(description = "编码") |
|
|
|
|
private String code; |
|
|
|
|
/** |
|
|
|
|
* 类型 |
|
|
|
|
*/ |
|
|
|
|
@Schema(description = "类型") |
|
|
|
|
private Long remindMsgType; |
|
|
|
|
/** |
|
|
|
|
* [零件]id |
|
|
|
|
*/ |
|
|
|
|
@Schema(description = "[零件]id") |
|
|
|
|
private Long partId; |
|
|
|
|
/** |
|
|
|
|
* [零件]编码 |
|
|
|
|
*/ |
|
|
|
|
@Schema(description = "[零件]编码") |
|
|
|
|
private String partCode; |
|
|
|
|
/** |
|
|
|
|
* 是否热处理 |
|
|
|
|
*/ |
|
|
|
|
@Schema(description = "是否热处理") |
|
|
|
|
private String isHeatTreatment; |
|
|
|
|
/** |
|
|
|
|
* 是否镀后检验 |
|
|
|
|
*/ |
|
|
|
|
@Schema(description = "是否镀后检验") |
|
|
|
|
private String isAfterPlating; |
|
|
|
|
/** |
|
|
|
|
* 质量等级 |
|
|
|
|
*/ |
|
|
|
|
@Schema(description = "质量等级") |
|
|
|
|
private String qualityLevel; |
|
|
|
|
/** |
|
|
|
|
* 镀金检测 |
|
|
|
|
*/ |
|
|
|
|
@Schema(description = "镀金检测") |
|
|
|
|
private String testAu; |
|
|
|
|
/** |
|
|
|
|
* 镀银检测 |
|
|
|
|
*/ |
|
|
|
|
@Schema(description = "镀银检测") |
|
|
|
|
private String testAg; |
|
|
|
|
/** |
|
|
|
|
* 提醒内容 |
|
|
|
|
*/ |
|
|
|
|
@Schema(description = "提醒内容") |
|
|
|
|
private String remindContent; |
|
|
|
|
/** |
|
|
|
|
* 排序 |
|
|
|
|
*/ |
|
|
|
|
@Schema(description = "排序") |
|
|
|
|
private Long sort; |
|
|
|
|
/** |
|
|
|
|
* 备注 |
|
|
|
|
*/ |
|
|
|
|
@Schema(description = "备注") |
|
|
|
|
private String remark; |
|
|
|
|
/** |
|
|
|
|
* 子[零件]id |
|
|
|
|
*/ |
|
|
|
|
@Schema(description = "子[零件]id") |
|
|
|
|
private Long subPartId; |
|
|
|
|
/** |
|
|
|
|
* 子[零件]编码 |
|
|
|
|
*/ |
|
|
|
|
@Schema(description = "子[零件]编码") |
|
|
|
|
private String subPartCode; |
|
|
|
|
/** |
|
|
|
|
* 生产标识 |
|
|
|
|
*/ |
|
|
|
|
@Schema(description = "生产标识") |
|
|
|
|
private String prodFlagText; |
|
|
|
|
/** |
|
|
|
|
* 参数1 |
|
|
|
|
*/ |
|
|
|
|
@Schema(description = "参数1") |
|
|
|
|
private String param1; |
|
|
|
|
/** |
|
|
|
|
* 参数2 |
|
|
|
|
*/ |
|
|
|
|
@Schema(description = "参数2") |
|
|
|
|
private String param2; |
|
|
|
|
/** |
|
|
|
|
* 参数3 |
|
|
|
|
*/ |
|
|
|
|
@Schema(description = "参数3") |
|
|
|
|
private String param3; |
|
|
|
|
/** |
|
|
|
|
* 参数4 |
|
|
|
|
*/ |
|
|
|
|
@Schema(description = "参数4") |
|
|
|
|
private String param4; |
|
|
|
|
/** |
|
|
|
|
* [零件]名称 |
|
|
|
|
*/ |
|
|
|
|
@Schema(description = "[零件]名称") |
|
|
|
|
private String partName; |
|
|
|
|
} |
|
|
|
|
|