using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Crm.Core.Entity.Crm { [Table("BAS_PARAMETER")] public class BAS_PARAMETER { public string? PARAKEY { get; set; } public string? GROUPID { get; set; } public string? PARAVALUE { get; set; } public string? PARATYPE { get; set; } public string? REMARK { get; set; } public DateTime? CTIME { get; set; } public decimal? CREATEUSER { get; set; } public DateTime? UTIME { get; set; } public decimal? UPDATEUSER { get; set; } public string? EDITFORM { get; set; } public string? PARANAME { get; set; } public string? DEPTCDOE { get; set; } [Key] public decimal PKID { get; set; } } }