using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Text; namespace Mini.Model.Entity { public class Bas_Parameter : BaseEntity { [Key] public string parakey { get; set; } public string paravalue { get; set; } public string remark { get; set; } } }