12345678910111213141516171819202122232425262728293031323334 |
- using System;
- using System.Collections.Generic;
- #nullable disable
- namespace Ropin.Inspection.Model.Entities
- {
- public partial class TSYS_LicenseType
- {
- public TSYS_LicenseType()
- {
- TSYS_LicenseTypePrivs = new HashSet<TSYS_LicenseTypePriv>();
- TSYS_Licenses = new HashSet<TSYS_License>();
- }
- public string C_Code { get; set; }
- public string C_Name { get; set; }
- public int I_MaxMemberQty { get; set; }
- public int I_MaxSpotQty { get; set; }
- public int I_MaxFileSize { get; set; }
- public int? I_Sort { get; set; }
- public string C_Remark { get; set; }
- public Guid C_CreateBy { get; set; }
- public DateTime D_CreateOn { get; set; }
- public Guid? C_LastUpdatedBy { get; set; }
- public DateTime? D_LastUpdatedOn { get; set; }
- public string C_Status { get; set; }
- public virtual TSYS_User C_CreateByNavigation { get; set; }
- public virtual TSYS_User C_LastUpdatedByNavigation { get; set; }
- public virtual ICollection<TSYS_LicenseTypePriv> TSYS_LicenseTypePrivs { get; set; }
- public virtual ICollection<TSYS_License> TSYS_Licenses { get; set; }
- }
- }
|