using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Hg.Core.Entity { [Table("BAS_PARAMETER")] public class BasParameter { [Key] 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 int? CREATEUSER { get; set; } public DateTime? UTIME { get; set; } public int? UPDATEUSER { get; set; } public string? EDITFORM { get; set; } public string? PARANAME { get; set; } public string? DEPTCDOE { get; set; } } }