1234567891011121314151617181920212223242526 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel.DataAnnotations;
- #nullable disable
- namespace Ropin.Inspection.Model.Entities
- {
- public partial class TISP_Report
- {
- [Key]
- public Guid G_ID { get; set; } = Guid.NewGuid();
- public string C_StoreCode { get; set; }
- public string C_Name { get; set; }
- public int I_Type { get; set; }
- public string C_GroupName { get; set; }
- public DateTime? D_Start { get; set; }
- public DateTime? D_End { get; set; }
- public DateTime? D_CreateTime { get; set; }
- public string C_Data { get; set; }
- public string C_Remark { get; set; }
- public string C_Status { get; set; }
- public virtual TPNT_Store C_StoreCodeNavigation { get; set; }
- }
- }
|