TPNT_Type.cs 509 B

12345678910111213141516171819202122
  1. using System;
  2. using System.Collections.Generic;
  3. #nullable disable
  4. namespace Ropin.Inspection.Model.Entities
  5. {
  6. public partial class TPNT_Type
  7. {
  8. public TPNT_Type()
  9. {
  10. TPNT_Stores = new HashSet<TPNT_Store>();
  11. }
  12. public Guid C_Code { get; set; }
  13. public string C_Name { get; set; }
  14. public int? I_Sort { get; set; }
  15. public string C_Status { get; set; }
  16. public virtual ICollection<TPNT_Store> TPNT_Stores { get; set; }
  17. }
  18. }