using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using System.Linq; using System.Web; namespace DSWeb.Areas.MvcShipping.DB { [Table("sys_param_set")] public class SysParamSet { [Key] public string GID { get; set; } public string PARAMNAME { get; set; } public string PARAMDESCRIPTION { get; set; } public string PARAMVALUE { get; set; } public string MODIFIEDUSER { get; set; } public DateTime? MODIFIEDTIME { get; set; } public string PARAMTYPE { get; set; } public string FIELDTYPE { get; set; } } }