erp-platform/api/src/Erp.Platform.Domain/Data/SeedConsts.cs

602 lines
29 KiB
C#
Raw Normal View History

2025-05-06 06:45:49 +00:00
using System.Collections.Generic;
2025-11-11 19:49:52 +00:00
using static Erp.Platform.PlatformConsts;
2025-05-06 06:45:49 +00:00
2025-11-11 19:49:52 +00:00
namespace Erp.Platform.Data.Seeds;
2025-05-06 06:45:49 +00:00
public static class SeedConsts
{
public const string Platform = $"{Prefix.App}.{AppName}";
public static class CRUD
{
public const string Create = "Create";
public const string Read = "Read";
public const string Update = "Update";
public const string Delete = "Delete";
public const string Export = "Export";
}
public static class AbpIdentity
{
public const string GroupName = $"{Prefix.Abp}.Identity";
public static class PermissionGroups
{
public const string Default = GroupName + ".PermissionGroups";
public const string Create = Default + ".Create";
public const string Update = Default + ".Update";
public const string Delete = Default + ".Delete";
public const string Export = Default + ".Export";
2025-08-11 06:34:44 +00:00
public const string Import = Default + ".Import";
public const string Note = Default + ".Note";
2025-05-06 06:45:49 +00:00
}
public static class Permissions
{
public const string Default = GroupName + ".Permissions";
public const string Create = Default + ".Create";
public const string Update = Default + ".Update";
public const string Delete = Default + ".Delete";
public const string Export = Default + ".Export";
2025-08-11 06:34:44 +00:00
public const string Import = Default + ".Import";
public const string Note = Default + ".Note";
2025-05-06 06:45:49 +00:00
}
public static class Preferences
{
public const string Default = GroupName + ".Preferences";
public static class Language
{
public const string Default = Preferences.Default + ".Language";
}
}
public static class Profile
{
public const string Default = GroupName + ".Profile";
public static class General
{
public const string Default = Profile.Default + ".General";
public const string RequireVerifiedAccount = Default + ".RequireVerifiedAccount";
public const string BlacklistedEmailProviders = Default + ".BlacklistedEmailProviders";
}
}
public static class Password
{
public const string Default = GroupName + ".Password";
public const string CurrentPassword = Default + ".CurrentPassword";
public const string NewPassword = Default + ".NewPassword";
public const string ConfirmPassword = Default + ".ConfirmPassword";
public const string RequiredLength = Default + ".RequiredLength";
public const string RequiredUniqueChars = Default + ".RequiredUniqueChars";
public const string RequireNonAlphanumeric = Default + ".RequireNonAlphanumeric";
public const string RequireLowercase = Default + ".RequireLowercase";
public const string RequireUppercase = Default + ".RequireUppercase";
public const string RequireDigit = Default + ".RequireDigit";
public const string PasswordChangePeriodDays = Default + ".PasswordChangePeriodDays";
public const string ForceUsersToPeriodicallyChangePassword = Default + ".ForceUsersToPeriodicallyChangePassword";
}
public static class Lockout
{
public const string Default = GroupName + ".Lockout";
public const string AllowedForNewUsers = Default + ".AllowedForNewUsers";
public const string LockoutDuration = Default + ".LockoutDuration";
public const string MaxFailedAccessAttempts = Default + ".MaxFailedAccessAttempts";
}
public static class SignIn
{
public const string Default = GroupName + ".SignIn";
public const string RequireConfirmedEmail = Default + ".RequireConfirmedEmail";
public const string RequireConfirmedPhoneNumber = Default + ".RequireConfirmedPhoneNumber";
}
public static class User
{
public const string Default = GroupName + ".User";
public const string IsUserNameUpdateEnabled = Default + ".IsUserNameUpdateEnabled";
public const string IsEmailUpdateEnabled = Default + ".IsEmailUpdateEnabled";
public static class UserInformation
{
public const string Default = User.Default + ".UserInformation";
public const string RoleManagement = Default + ".RoleManagement";
public const string EmailAddress = Default + ".EmailAddress";
public const string Name = Default + ".Name";
public const string Surname = Default + ".Surname";
public const string PhoneNumber = Default + ".PhoneNumber";
public const string PasswordChangeTime = Default + ".PasswordChangeTime";
}
public static class LockoutManagement
{
public const string Default = User.Default + ".LockoutManagement";
public const string Active = Default + ".Active";
public const string AdminVerification = Default + ".AdminVerification";
public const string TwoFactorEnabled = Default + ".TwoFactorEnabled";
public const string AccountEndDate = Default + ".AccountEndDate";
public const string AccountLockoutEnabled = Default + ".AccountLockoutEnabled";
public const string AccountLocked = Default + ".AccountLocked";
public const string AccountLockDate = Default + ".AccountLockDate";
}
}
public const string NotificationSettings = GroupName + ".NotificationSettings";
public static class ActivityLog
{
public const string Default = GroupName + ".ActivityLogs";
public const string Filters = Default + ".Filters";
public const string Channels = Default + ".Channels";
public const string LoadMore = Default + ".LoadMore";
public const string ReceivedAllNotifications = Default + ".ReceivedAllNotifications";
public const string ViewAllActivity = Default + ".ViewAllActivity";
public const string Notifications = Default + ".Notifications";
public const string MarkAllRead = Default + ".MarkAllRead";
}
public static class OrganizationUnits
{
public const string Default = GroupName + ".OrganizationUnits";
}
}
public static class AbpAccount
{
public const string GroupName = $"{Prefix.Abp}.Account";
2025-05-06 06:45:49 +00:00
public const string General = GroupName + ".General";
public const string IsSelfRegistrationEnabled = GroupName + ".IsSelfRegistrationEnabled";
public const string EnableLocalLogin = GroupName + ".EnableLocalLogin";
public const string TwoFactor = GroupName + ".TwoFactor";
public static class Captcha
{
public const string Default = GroupName + ".Captcha";
public const string MaxFailedAccessAttempts = Default + ".MaxFailedAccessAttempts";
public const string EndPoint = Default + ".EndPoint";
public const string SiteKey = Default + ".SiteKey";
public const string SecretKey = Default + ".SecretKey";
}
}
public static class AbpSettings
{
public static class AbpLocalization
{
2025-05-26 13:49:39 +00:00
public const string GroupName = $"{Prefix.Abp}.Localization";
2025-05-06 06:45:49 +00:00
public const string DefaultLanguage = GroupName + ".DefaultLanguage";
public const string Timezone = GroupName + ".Timezone";
}
public static class Mailing
{
public const string GroupName = $"{Prefix.Abp}.Mailing";
public static class Default
{
public const string GroupName = Mailing.GroupName + ".Default";
public const string DefaultFromAddress = Mailing.GroupName + ".DefaultFromAddress";
public const string DefaultFromDisplayName = Mailing.GroupName + ".DefaultFromDisplayName";
}
public static class Smtp
{
public const string GroupName = Mailing.GroupName + ".Smtp";
public const string Host = GroupName + ".Host";
public const string Port = GroupName + ".Port";
public const string UserName = GroupName + ".UserName";
public const string Password = GroupName + ".Password";
public const string Domain = GroupName + ".Domain";
public const string EnableSsl = GroupName + ".EnableSsl";
}
public static class AWS
{
public const string GroupName = Mailing.GroupName + ".AWS";
public const string Profile = GroupName + ".Profile";
public const string Region = GroupName + ".Region";
public const string AccessKey = GroupName + ".AccessKey";
public const string AccessKeyId = GroupName + ".AccessKeyId";
}
}
public static class SiteManagement
{
public const string GroupName = $"{Prefix.App}.SiteManagement";
public static class General
{
public const string Default = GroupName + ".General";
public const string NewMemberNotificationEmails = Default + ".NewMemberNotificationEmails";
public const string TimedLoginEmails = Default + ".TimedLoginEmails";
}
public static class Theme
{
public const string Default = GroupName + ".Theme";
public static class Style
{
public const string Default = Theme.Default + ".Style";
public static Dictionary<string, string> Items = new()
{
{ "dx.light",$"{Prefix.App}.Setting.light" },
{ "dx.light.compact", $"{Prefix.App}.Setting.light.compact" },
{ "dx.dark", $"{Prefix.App}.Setting.dark" },
{ "dx.dark.compact", $"{Prefix.App}.Setting.dark.compact" },
{ "dx.contrast", $"{Prefix.App}.Setting.contrast" },
{ "dx.contrast.compact", $"{Prefix.App}.Setting.contrast.compact" },
{ "dx.carmine", $"{Prefix.App}.Setting.carmine" },
{ "dx.darkmoon", $"{Prefix.App}.Setting.darkmoon" },
{ "dx.softblue", $"{Prefix.App}.Setting.softblue" },
{ "dx.darkviolet", $"{Prefix.App}.Setting.darkviolet" },
{ "dx.greenmist", $"{Prefix.App}.Setting.greenmist" },
{ "dx.material.blue.light", $"{Prefix.App}.Setting.material.blue.light" },
{ "dx.material.blue.dark", $"{Prefix.App}.Setting.material.blue.dark" },
{ "dx.material.lime.light",$"{Prefix.App}.Setting.material.lime.light" },
{ "dx.material.lime.dark", $"{Prefix.App}.Setting.material.lime.dark" },
{ "dx.material.orange.light", $"{Prefix.App}.Setting.material.orange.light" },
{ "dx.material.orange.dark", $"{Prefix.App}.Setting.material.orange.dark" },
{ "dx.material.purple.light", $"{Prefix.App}.Setting.material.purple.light" },
{ "dx.material.purple.dark", $"{Prefix.App}.Setting.material.purple.dark" },
{ "dx.material.teal.light", $"{Prefix.App}.Setting.material.teal.light" },
{ "dx.material.teal.dark", $"{Prefix.App}.Setting.material.teal.dark" },
{ "dx.material.blue.light.compact", $"{Prefix.App}.Setting.material.blue.light.compact" },
{ "dx.material.blue.dark.compact", $"{Prefix.App}.Setting.material.blue.dark.compact" },
{ "dx.material.lime.light.compact", $"{Prefix.App}.Setting.material.lime.light.compact" },
{ "dx.material.lime.dark.compact", $"{Prefix.App}.Setting.material.lime.dark.compact" },
{ "dx.material.orange.light.compact",$"{Prefix.App}.Setting.material.orange.light.compact" },
{ "dx.material.orange.dark.compact",$"{Prefix.App}.Setting.material.orange.dark.compact" },
{ "dx.material.purple.light.compact",$"{Prefix.App}.Setting.material.purple.light.compact" },
{ "dx.material.purple.dark.compact",$"{Prefix.App}.Setting.material.purple.dark.compact" },
{ "dx.material.teal.light.compact", $"{Prefix.App}.Setting.material.teal.light.compact" },
{ "dx.material.teal.dark.compact", $"{Prefix.App}.Setting.material.teal.dark.compact" },
};
}
}
}
public static class Sender
{
public const string GroupName = $"{Prefix.App}.Sender";
public static class Sms
{
public const string Default = GroupName + ".Sms";
public static class PostaGuvercini
{
public const string Default = Sms.Default + ".PostaGuvercini";
public const string Url = Default + ".Url";
public const string Username = Default + ".Username";
public const string Password = Default + ".Password";
}
}
public static class Rocket
{
public const string Default = GroupName + ".Rocket";
public const string Url = Default + ".Url";
public const string UserId = Default + ".UserId";
public const string Token = Default + ".Token";
}
public static class WhatsApp
{
public const string Default = GroupName + ".WhatsApp";
public const string Url = Default + ".Url";
public const string PhoneNumberId = Default + ".PhoneNumberId";
public const string TemplateName = Default + ".TemplateName";
public const string Token = Default + ".Token";
}
}
}
public static class AppCodes
{
public const string Home = Prefix.App + ".Home";
2025-06-25 06:48:40 +00:00
//Saas
public const string Saas = Prefix.App + ".Saas";
public const string Branches = Prefix.App + ".Branches";
2025-05-06 06:45:49 +00:00
public static class Settings
{
public const string Default = Prefix.App + ".Settings";
public const string GlobalSearch = Default + ".GlobalSearch";
public const string SettingDefinitions = Default + ".SettingDefinitions";
}
public static class Languages
{
public const string Default = Prefix.App + ".Languages";
public const string Language = Default + ".Language";
public const string LanguageText = Default + ".LanguageText";
}
2025-08-20 11:50:53 +00:00
public const string Routes = Prefix.App + ".Routes";
2025-06-26 13:58:53 +00:00
public static class Menus
{
public const string Default = Prefix.App + ".Menus";
public const string Menu = Default + ".Menu";
public const string Manager = Default + ".Manager";
}
2025-05-06 06:45:49 +00:00
public static class Listforms
{
public const string Default = Prefix.App + ".Listforms";
public const string DataSource = Default + ".DataSource";
2025-06-16 13:14:42 +00:00
public const string Wizard = Default + ".Wizard";
2025-05-06 06:45:49 +00:00
public const string Listform = Default + ".Listform";
public const string ListformField = Default + ".ListformField";
public const string Chart = Default + ".Chart";
}
public static class Notifications
{
public const string Default = Prefix.App + ".Notifications";
public const string NotificationRules = Default + ".NotificationRules";
public const string Notification = Default + ".Notification";
}
2025-06-25 06:48:40 +00:00
public const string BackgroundWorkers = Prefix.App + ".BackgroundWorkers";
2025-08-20 11:50:53 +00:00
public const string Forum = Prefix.App + ".Forum";
public static class DeveloperKits
{
public const string Default = Prefix.App + ".DeveloperKit";
public const string CustomEndpoints = Default + ".CustomEndpoints";
}
2025-08-20 11:50:53 +00:00
public static class Reports
{
public const string Default = Prefix.App + ".Reports";
public const string Categories = Default + ".Categories";
}
//Web Site
2025-10-05 21:16:29 +00:00
public const string About = Prefix.App + ".About";
2025-08-20 11:50:53 +00:00
public const string Services = Prefix.App + ".Services";
public static class Orders
{
public const string Default = Prefix.App + ".Orders";
public const string Products = Default + ".Products";
public const string PaymentMethods = Default + ".PaymentMethods";
public const string InstallmentOptions = Default + ".InstallmentOptions";
2025-11-24 14:12:56 +00:00
public const string SalesOrders = Default + ".SalesOrders";
2025-08-20 11:50:53 +00:00
}
2025-10-05 21:16:29 +00:00
public static class BlogManagement
{
public const string Default = Prefix.App + ".BlogManagement";
public const string BlogPosts = Default + ".Posts";
public const string BlogCategory = Default + ".Category";
}
2025-08-20 11:50:53 +00:00
public const string Demos = Prefix.App + ".Demos";
2025-08-21 13:54:01 +00:00
public const string Contact = Prefix.App + ".Contact";
2025-06-25 06:48:40 +00:00
//Administration
public const string Administration = Prefix.App + ".Administration";
2025-06-25 06:48:40 +00:00
public const string Setting = Prefix.App + ".Setting";
public static class IdentityManagement
{
public const string ClaimTypes = Prefix.App + ".ClaimType";
public const string IpRestrictions = Prefix.App + ".IpRestrictions";
}
public const string AuditLogs = Prefix.App + ".AuditLogs";
public static class Definitions
{
public const string Default = Prefix.App + ".Definitions";
2025-11-05 06:37:04 +00:00
public const string ContactTag = Default + ".ContactTag";
public const string ContactTitle = Default + ".ContactTitle";
public const string Currency = Default + ".Currency";
public const string CountryGroup = Default + ".CountryGroup";
public const string Country = Default + ".Country";
public const string City = Default + ".City";
public const string District = Default + ".District";
public const string Sector = Default + ".Sector";
2025-06-25 06:48:40 +00:00
public const string SkillType = Default + ".SkillType";
2025-08-19 21:01:24 +00:00
public const string SkillLevel = Default + ".SkillLevel";
public const string Skill = Default + ".Skill";
2025-06-25 06:48:40 +00:00
public const string UomCategory = Default + ".UomCategory";
2025-08-19 21:01:24 +00:00
public const string Uom = Default + ".Uom";
public const string Behavior = Default + ".Behavior";
public const string Disease = Default + ".Disease";
public const string Document = Default + ".Document";
public const string EducationStatus = Default + ".EducationStatus";
public const string MeetingMethod = Default + ".MeetingMethod";
public const string MeetingResult = Default + ".MeetingResult";
public const string Program = Default + ".Program";
public const string Interesting = Default + ".Interesting";
public const string SalesRejectionReason = Default + ".SalesRejectionReason";
public const string ClassCancellationReason = Default + ".ClassCancellationReason";
public const string Source = Default + ".Source";
public const string Vaccine = Default + ".Vaccine";
public const string NoteType = Default + ".NoteType";
public const string WorkHour = Default + ".WorkHour";
public const string Vehicle = Default + ".Vehicle";
public const string Schedule = Default + ".Schedule";
public const string ScheduleLesson = Default + ".ScheduleLesson";
public const string Psychologist = Default + ".Psychologist";
public const string Meal = Default + ".Meal";
public const string Lawyer = Default + ".Lawyer";
public const string LessonPeriod = Default + ".LessonPeriod";
public const string RegistrationType = Default + ".RegistrationType";
public const string RegistrationMethod = Default + ".RegistrationMethod";
public const string ClassType = Default + ".ClassType";
public const string Class = Default + ".Class";
public const string Level = Default + ".Level";
2025-10-16 22:15:34 +00:00
public const string QuestionTag = Default + ".QuestionTag";
2025-10-16 12:47:32 +00:00
public const string QuestionPool = Default + ".QuestionPool";
public const string Question = Default + ".Question";
2025-06-25 06:48:40 +00:00
}
2025-10-15 06:23:32 +00:00
2025-10-16 12:47:32 +00:00
public static class Coordinator
2025-10-15 19:52:01 +00:00
{
public const string Default = Prefix.App + ".Classroom";
}
2025-10-25 20:30:01 +00:00
public static class Intranet
{
public const string Default = Prefix.App + ".Intranet";
public const string Events = Default + ".Events";
public const string EventType = Events + ".EventType";
public const string EventCategory = Events + ".EventCategory";
public const string Event = Events + ".Event";
public const string Meal = Default + ".Meal";
public const string Reservation = Default + ".Reservation";
public const string ShuttleRoute = Default + ".ShuttleRoute";
public const string Announcement = Default + ".Announcement";
public const string Visitor = Default + ".Visitor";
2025-10-28 10:57:32 +00:00
public const string SocialPost = Default + ".SocialPost";
2025-11-17 14:51:17 +00:00
public const string SocialComment = Default + ".SocialComment";
2025-10-25 20:30:01 +00:00
}
2025-10-21 12:14:30 +00:00
public static class Hr
{
public const string Default = Prefix.App + ".Hr";
2025-10-25 21:04:38 +00:00
public const string Training = Default + ".Training";
2025-10-21 12:14:30 +00:00
public const string Department = Default + ".Department";
public const string Employee = Default + ".Employee";
public const string JobPosition = Default + ".JobPosition";
public const string EmploymentType = Default + ".EmploymentType";
public const string Badge = Default + ".Badge";
2025-10-21 12:45:24 +00:00
public const string CostCenter = Default + ".CostCenter";
2025-10-22 12:16:34 +00:00
public const string Leave = Default + ".Leave";
public const string Overtime = Default + ".Overtime";
2025-10-26 20:27:01 +00:00
public const string Expense = Default + ".Expense";
2025-10-23 12:05:16 +00:00
public const string Payroll = Default + ".Payroll";
2025-10-22 12:16:34 +00:00
public const string Template360 = Default + ".Template360";
2025-10-24 05:37:38 +00:00
public const string Performance360 = Default + ".Performance360";
2025-10-27 14:47:52 +00:00
public const string Survey = Default + ".Survey";
public const string SurveyQuestion = Default + ".SurveyQuestion";
public const string SurveyQuestionOption = Default + ".SurveyQuestionOption";
2025-10-27 18:45:39 +00:00
public const string SurveyResponse = Default + ".SurveyResponse";
2025-10-21 12:14:30 +00:00
}
2025-11-13 21:28:39 +00:00
public static class Crm
{
public const string Default = Prefix.App + ".Crm";
public const string CustomerType = Default + ".CustomerType";
public const string CustomerSegment = Default + ".CustomerSegment";
public const string Customer = Default + ".Customer";
public const string LossReason = Default + ".LossReason";
2025-11-14 12:44:59 +00:00
public const string Opportunity = Default + ".Opportunity";
public const string OpportunityActivity = Default + ".OpportunityActivity";
2025-11-14 12:44:59 +00:00
public const string OpportunityCompetitor = Default + ".OpportunityCompetitor";
2025-11-13 21:28:39 +00:00
}
public static class SupplyChain
{
public const string Default = Prefix.App + ".SupplyChain";
public const string MaterialType = Default + ".MaterialType";
public const string MaterialGroup = Default + ".MaterialGroup";
2025-11-12 09:44:47 +00:00
public const string Material = Default + ".Material";
2025-11-12 12:59:31 +00:00
public const string Supply = Default + ".Supply";
public const string PaymentTerm = Default + ".PaymentTerm";
public const string SupplyType = Default + ".SupplyType";
public const string SupplyCardType = Default + ".SupplyCardType";
public const string PartnerBank = Default + ".PartnerBank";
public const string PartnerCertificate = Default + ".PartnerCertificate";
public const string PartnerContact = Default + ".PartnerContact";
2025-11-13 09:36:30 +00:00
public const string Approval = Default + ".Approval";
public const string ApprovalStep = Default + ".ApprovalStep";
2025-11-16 20:35:09 +00:00
public const string RequestType = Default + ".RequestType";
public const string Request = Default + ".Request";
public const string RequestItem = Default + ".RequestItem";
}
2025-11-18 20:42:48 +00:00
public static class Maintenance
{
public const string Default = Prefix.App + ".Maintenance";
public const string WorkcenterType = Default + ".WorkcenterType";
public const string WorkcenterStatus = Default + ".WorkcenterStatus";
public const string Workcenter = Default + ".Workcenter";
2025-11-20 14:55:13 +00:00
public const string Plan = Default + ".Plan";
public const string PlanMaterial = Default + ".PlanMaterial";
public const string PlanEmployee = Default + ".PlanEmployee";
2025-11-21 08:31:59 +00:00
public const string Fault = Default + ".Fault";
public const string FaultType = Default + ".FaultType";
public const string FaultStatus = Default + ".FaultStatus";
public const string Workorder = Default + ".Workorder";
public const string WorkorderType = Default + ".WorkorderType";
public const string WorkorderStatus = Default + ".WorkorderStatus";
2025-11-18 20:42:48 +00:00
}
2025-10-15 06:23:32 +00:00
public static class Accounting
{
public const string Default = Prefix.App + ".Accounting";
public const string Bank = Default + ".Bank";
public const string BankAccount = Default + ".BankAccount";
2025-11-25 19:55:52 +00:00
public const string Cash = Default + ".Cash";
public const string CurrentAccount = Default + ".CurrentAccount";
2025-10-15 06:23:32 +00:00
}
2025-11-24 20:50:53 +00:00
public static class Store
{
public const string Default = Prefix.App + ".Store";
public const string WarehouseType = Default + ".WarehouseType";
public const string Warehouse = Default + ".Warehouse";
public const string ZoneType = Default + ".ZoneType";
public const string Zone = Default + ".Zone";
public const string LocationType = Default + ".LocationType";
public const string Location = Default + ".Location";
2025-11-25 12:35:29 +00:00
public const string Putaway = Default + ".Putaway";
public const string PutawayCondition = Default + ".PutawayCondition";
2025-11-24 20:50:53 +00:00
}
2025-11-26 21:17:01 +00:00
public static class Project
{
public const string Default = Prefix.App + ".Project";
2025-11-27 08:49:09 +00:00
public const string Type = Default + ".Type";
public const string Status = Default + ".Status";
public const string Risk = Default + ".Risk";
public const string Category = Default + ".Category";
2025-11-27 11:34:57 +00:00
public const string TaskType = Default + ".TaskType";
2025-11-27 22:00:37 +00:00
public const string WorkType = Default + ".WorkType";
2025-11-27 21:00:02 +00:00
public const string Projects = Default + ".Projects";
public const string ProjectPhase = Default + ".ProjectPhase";
public const string ProjectRisk = Default + ".ProjectRisk";
public const string ProjectTeam = Default + ".ProjectTeam";
public const string ProjectTask = Default + ".ProjectTask";
2025-11-27 22:00:37 +00:00
public const string ProjectTaskDaily = Default + ".ProjectTaskDaily";
2025-11-26 21:17:01 +00:00
}
public static class Mrp
{
public const string Default = Prefix.App + ".Mrp";
public const string OperationCategory = Default + ".OperationCategory";
public const string OperationType = Default + ".OperationType";
public const string Operation = Default + ".Operation";
2025-11-26 11:04:31 +00:00
public const string WorkcenterType = Default + ".WorkcenterType";
public const string WorkcenterStatus = Default + ".WorkcenterStatus";
public const string Workcenter = Default + ".Workcenter";
2025-11-26 14:58:25 +00:00
public const string BomType = Default + ".BomType";
public const string Bom = Default + ".Bom";
public const string BomComponent = Default + ".BomComponent";
public const string BomOperation = Default + ".BomOperation";
}
2025-05-06 06:45:49 +00:00
}
public static class DataSources
{
public const string DefaultCode = "Default";
}
2025-05-06 06:45:49 +00:00
}
2025-11-11 19:49:52 +00:00