using System;
using System.Collections.Generic;

#nullable disable

namespace Ropin.Inspection.Model.Entities
{
    public partial class TDEV_DevDataConfig
    {
        public string C_Code { get; set; }
        public string C_Name { get; set; }
        public int I_Interval { 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; }
    }
}