624 lines
18 KiB
C#
624 lines
18 KiB
C#
// Admin.NET 项目的版权、商标、专利和其他相关权利均受相应法律法规的保护。使用本项目应遵守相关法律法规和许可证的要求。
|
|
//
|
|
// 本项目主要遵循 MIT 许可证和 Apache 许可证(版本 2.0)进行分发和使用。许可证位于源代码树根目录中的 LICENSE-MIT 和 LICENSE-APACHE 文件。
|
|
//
|
|
// 不得利用本项目从事危害国家安全、扰乱社会秩序、侵犯他人合法权益等法律法规禁止的活动!任何基于本项目二次开发而产生的一切法律纠纷和责任,我们不承担任何责任!
|
|
|
|
using Admin.NET.Core;
|
|
using Elastic.Clients.Elasticsearch.LicenseManagement;
|
|
using SqlSugar;
|
|
using System.ComponentModel.DataAnnotations;
|
|
namespace Vistar.Application.Entity;
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
[SugarTable("ConfigurationData","")]
|
|
[Tenant("启威星 1.94.4.74")]
|
|
public class ConfigurationData
|
|
{
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
[Required]
|
|
[SugarColumn(ColumnName = "ParentGuid", ColumnDescription = "", Length = 50)]
|
|
public string ParentGuid { get; set; }
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
[Required]
|
|
[SugarColumn(ColumnName = "ChildGuid", ColumnDescription = "", Length = 50)]
|
|
public string ChildGuid { get; set; }
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
[Required]
|
|
[SugarColumn(ColumnName = "ChildObjID", ColumnDescription = "")]
|
|
public long ChildObjID { get; set; }
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
[Required]
|
|
[SugarColumn(ColumnName = "ConfigId", ColumnDescription = "")]
|
|
public long ConfigId { get; set; }
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "childVersion", ColumnDescription = "")]
|
|
public int? childVersion { get; set; }
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
[Required]
|
|
[SugarColumn(ColumnName = "ParentVersion", ColumnDescription = "")]
|
|
public int ParentVersion { get; set; }
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "isDeleted", ColumnDescription = "")]
|
|
public bool? isDeleted { get; set; }
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
[Required]
|
|
[SugarColumn(ColumnName = "ConfigInstanceID", IsIdentity = true, ColumnDescription = "", IsPrimaryKey = true)]
|
|
public long ConfigInstanceID { get; set; }
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "ChildConfigID", ColumnDescription = "")]
|
|
public long? ChildConfigID { get; set; }
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "CreatedUserID", ColumnDescription = "")]
|
|
public long? CreatedUserID { get; set; }
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "ModifiedUserID", ColumnDescription = "")]
|
|
public long? ModifiedUserID { get; set; }
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "CreatedDate", ColumnDescription = "")]
|
|
public DateTime? CreatedDate { get; set; }
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "ModifiedDate", ColumnDescription = "")]
|
|
public DateTime? ModifiedDate { get; set; }
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "Quantity", ColumnDescription = "")]
|
|
public double? Quantity { get; set; }
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "Description", ColumnDescription = "", Length = -1)]
|
|
public string? Description { get; set; }
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "EffectiveFrom", ColumnDescription = "")]
|
|
public DateTime? EffectiveFrom { get; set; }
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "EffectiveTo", ColumnDescription = "")]
|
|
public DateTime? EffectiveTo { get; set; }
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "Revision", ColumnDescription = "", Length = 50)]
|
|
public string? Revision { get; set; }
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "Marker", ColumnDescription = "", Length = 50)]
|
|
public string? Marker { get; set; }
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
[Required]
|
|
[SugarColumn(ColumnName = "Type", ColumnDescription = "", Length = 50)]
|
|
public string Type { get; set; }
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "ConfigParent", ColumnDescription = "")]
|
|
public long? ConfigParent { get; set; }
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "OrderIndex", ColumnDescription = "")]
|
|
public long? OrderIndex { get; set; }
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "PartNumber", ColumnDescription = "", Length = 255)]
|
|
public string? PartNumber { get; set; }
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "_conf_24_tralala", ColumnDescription = "", Length = 255)]
|
|
public string? _conf_24_tralala { get; set; }
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "_conf_28_hello", ColumnDescription = "", Length = 255)]
|
|
public string? _conf_28_hello { get; set; }
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "_conf_28_sss", ColumnDescription = "", Length = 255)]
|
|
public string? _conf_28_sss { get; set; }
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "conf_29_sss", ColumnDescription = "", Length = 1000)]
|
|
public string? conf_29_sss { get; set; }
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "RecordImage", ColumnDescription = "")]
|
|
public byte[]? RecordImage { get; set; }
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "Folder", ColumnDescription = "", Length = 255)]
|
|
public string? Folder { get; set; }
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "CheckedStatus", ColumnDescription = "")]
|
|
public int? CheckedStatus { get; set; }
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "_TestConfigurimi_tralala", ColumnDescription = "", Length = 255)]
|
|
public string? _TestConfigurimi_tralala { get; set; }
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "_TestConfigurimi_asfasd", ColumnDescription = "", Length = 255)]
|
|
public string? _TestConfigurimi_asfasd { get; set; }
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
[Required]
|
|
[SugarColumn(ColumnName = "ParentObjectID", ColumnDescription = "")]
|
|
public long ParentObjectID { get; set; }
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "conf_30_somefields", ColumnDescription = "", Length = 1000)]
|
|
public string? conf_30_somefields { get; set; }
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "conf_30_TestNBS", ColumnDescription = "", Length = -1)]
|
|
public string? conf_30_TestNBS { get; set; }
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "conf_30_testDate", ColumnDescription = "")]
|
|
public DateTime? conf_30_testDate { get; set; }
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "conf_30_testNumber", ColumnDescription = "")]
|
|
public long? conf_30_testNumber { get; set; }
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "conf_30_TestList", ColumnDescription = "", Length = -1)]
|
|
public string? conf_30_TestList { get; set; }
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "conf_30_testListNo", ColumnDescription = "")]
|
|
public long? conf_30_testListNo { get; set; }
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "conf_30_testListdecimal", ColumnDescription = "")]
|
|
public double? conf_30_testListdecimal { get; set; }
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "conf_33_Comments", ColumnDescription = "", Length = 300)]
|
|
public string? conf_33_Comments { get; set; }
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "conf_33_SerialNo.", ColumnDescription = "", Length = -1)]
|
|
//public string? conf_33_SerialNo. { get; set; }
|
|
public string? conf_33_SerialNo { get; set; }
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "conf_33_TestContacts2", ColumnDescription = "")]
|
|
public long? conf_33_TestContacts2 { get; set; }
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "conf_33_TestContacts2_Rec", ColumnDescription = "")]
|
|
public long? conf_33_TestContacts2_Rec { get; set; }
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "conf_6_Comments", ColumnDescription = "", Length = 300)]
|
|
public string? conf_6_Comments { get; set; }
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "conf_6_SerialNumber", ColumnDescription = "", Length = -1)]
|
|
public string? conf_6_SerialNumber { get; set; }
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "ChildSwFileType", ColumnDescription = "")]
|
|
public int? ChildSwFileType { get; set; }
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "ParentSwFileType", ColumnDescription = "")]
|
|
public int? ParentSwFileType { get; set; }
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "conf_19_Serial", ColumnDescription = "", Length = -1)]
|
|
public string? conf_19_Serial { get; set; }
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "conf_19_Comments", ColumnDescription = "", Length = 1000)]
|
|
public string? conf_19_Comments { get; set; }
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "conf_21_Comments", ColumnDescription = "", Length = 1000)]
|
|
public string? conf_21_Comments { get; set; }
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "conf_19_testList", ColumnDescription = "", Length = -1)]
|
|
public string? conf_19_testList { get; set; }
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "conf_21_BuyStage", ColumnDescription = "", Length = -1)]
|
|
public string? conf_21_BuyStage { get; set; }
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "conf_19_testconfigfieldnbs", ColumnDescription = "", Length = -1)]
|
|
public string? conf_19_testconfigfieldnbs { get; set; }
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "conf_32_Comments", ColumnDescription = "", Length = 1000)]
|
|
public string? conf_32_Comments { get; set; }
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "isSuppressed", ColumnDescription = "")]
|
|
public bool? isSuppressed { get; set; }
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
[Required]
|
|
[SugarColumn(ColumnName = "isAddedFromSW", ColumnDescription = "")]
|
|
public bool isAddedFromSW { get; set; }
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "QtyManual", ColumnDescription = "")]
|
|
public double? QtyManual { get; set; }
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "SWPDMXrefId", ColumnDescription = "")]
|
|
public long? SWPDMXrefId { get; set; }
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "SwConfiguration", ColumnDescription = "", Length = 250)]
|
|
public string? SwConfiguration { get; set; }
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
[Required]
|
|
[SugarColumn(ColumnName = "inContext", ColumnDescription = "")]
|
|
public bool inContext { get; set; }
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
[Required]
|
|
[SugarColumn(ColumnName = "PrimaryFile", ColumnDescription = "", Length = 250)]
|
|
public string PrimaryFile { get; set; }
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
[Required]
|
|
[SugarColumn(ColumnName = "bKeepQuantityInSync", ColumnDescription = "")]
|
|
public bool bKeepQuantityInSync { get; set; }
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "BOMGuid", ColumnDescription = "", Length = 40)]
|
|
public string? BOMGuid { get; set; }
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
[Required]
|
|
[SugarColumn(ColumnName = "IsPDMReference", ColumnDescription = "")]
|
|
public bool IsPDMReference { get; set; }
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "BOMGuidCopiedFrom", ColumnDescription = "", Length = 40)]
|
|
public string? BOMGuidCopiedFrom { get; set; }
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "SWPDMXRefConfigurationID", ColumnDescription = "")]
|
|
public int? SWPDMXRefConfigurationID { get; set; }
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "SWPDMXRefConfigurationName", ColumnDescription = "", Length = 255)]
|
|
public string? SWPDMXRefConfigurationName { get; set; }
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "fld004492", ColumnDescription = "", Length = -1)]
|
|
public string? fld004492 { get; set; }
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "fld004670", ColumnDescription = "", Length = -1)]
|
|
public string? fld004670 { get; set; }
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "fld004671", ColumnDescription = "", Length = -1)]
|
|
public string? fld004671 { get; set; }
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "fld004691", ColumnDescription = "", Length = -1)]
|
|
public string? fld004691 { get; set; }
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "fld004936", ColumnDescription = "", Length = -1)]
|
|
public string? fld004936 { get; set; }
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "fld004937", ColumnDescription = "", Length = -1)]
|
|
public string? fld004937 { get; set; }
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "fld004938", ColumnDescription = "", Length = -1)]
|
|
public string? fld004938 { get; set; }
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "fld004939", ColumnDescription = "", Length = -1)]
|
|
public string? fld004939 { get; set; }
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "fld004940", ColumnDescription = "", Length = -1)]
|
|
public string? fld004940 { get; set; }
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "fld004941", ColumnDescription = "", Length = -1)]
|
|
public string? fld004941 { get; set; }
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "fld004994", ColumnDescription = "")]
|
|
public double? fld004994 { get; set; }
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "fld004995", ColumnDescription = "", Length = -1)]
|
|
public string? fld004995 { get; set; }
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "fld004996", ColumnDescription = "", Length = -1)]
|
|
public string? fld004996 { get; set; }
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "fld004997", ColumnDescription = "", Length = -1)]
|
|
public string? fld004997 { get; set; }
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "fld005017", ColumnDescription = "")]
|
|
public double? fld005017 { get; set; }
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "fld005018", ColumnDescription = "", Length = -1)]
|
|
public string? fld005018 { get; set; }
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "fld005019", ColumnDescription = "", Length = -1)]
|
|
public string? fld005019 { get; set; }
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "fld005020", ColumnDescription = "", Length = -1)]
|
|
public string? fld005020 { get; set; }
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "fld005296", ColumnDescription = "", Length = -1)]
|
|
public long? fld005296 { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "fld005298", ColumnDescription = "", Length = -1)]
|
|
public long? fld005298 { get; set; }
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "fld005586", ColumnDescription = "", Length = -1)]
|
|
public string? fld005586 { get; set; }
|
|
|
|
/// <summary>l
|
|
///
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "fld005577", ColumnDescription = "", Length = -1)]
|
|
public string? fld005577 { get; set; }
|
|
public string? fld005541 { get; set; }
|
|
public string? fld005542 { get; set; }
|
|
public string? fld005543 { get; set; }
|
|
public string? fld005544 { get; set; }
|
|
public string? fld005545 { get; set; }
|
|
public string? fld005546 { get; set; }
|
|
public string? fld005547 { get; set; }
|
|
|
|
/// <summary>
|
|
/// 工时
|
|
/// </summary>
|
|
public string fld005571 { get; set; }
|
|
/// <summary>
|
|
/// 工时单位
|
|
/// </summary>
|
|
public string fld005572 { get; set; }
|
|
/// <summary>
|
|
/// 控制码
|
|
/// </summary>
|
|
public string fld005573 { get; set; }
|
|
/// <summary>
|
|
/// 组号
|
|
/// </summary>
|
|
public string fld005574 { get; set; }
|
|
/// <summary>
|
|
/// 基本数量
|
|
/// </summary>
|
|
public string fld005575 { get; set; }
|
|
|
|
public string fld006140 { get; set; }
|
|
public string fld006141 { get; set; }
|
|
public string fld006142 { get; set; }
|
|
public string fld006143 { get; set; }
|
|
public DateTime fld006144 { get; set; }
|
|
public string fld006145 { get; set; }
|
|
public string fld006146 { get; set; }
|
|
public string fld006147 { get; set; }
|
|
public string fld006567 { get; set; }
|
|
public string fld006581 { get; set; }
|
|
public string fld006565 { get; set; }
|
|
/// <summary>
|
|
/// 变更前数量
|
|
/// </summary>
|
|
public string fld006564 { get; set; }
|
|
|
|
/// <summary>
|
|
/// 变更后数据
|
|
/// </summary>
|
|
public string fld006566 { get; set; }
|
|
public string fld006586 { get; set; }
|
|
}
|