12345678910111213141516171819202122232425 |
- using System;
- using System.Collections.Generic;
- #nullable disable
- namespace Ropin.Inspection.Model.Entities
- {
- public partial class TPRD_Log
- {
- public Guid C_Code { get; set; }
- public Guid C_ProductCode { get; set; }
- public int I_Type { get; set; }
- public string C_StoreCode { get; set; }
- public string C_DeviceCode { get; set; }
- public string C_SpotCode { get; set; }
- public string C_AlarmMsg { get; set; }
- public string C_Remark { get; set; }
- public Guid C_CreateBy { get; set; }
- public DateTime D_CreateOn { get; set; }
- public virtual TSYS_User C_CreateByNavigation { get; set; }
- public virtual TPRD_Product C_ProductCodeNavigation { get; set; }
- public virtual TPNT_Store C_StoreCodeNavigation { get; set; }
- }
- }
|