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("company")] public class Company { [Key] public string GID { get; set; } public string CODENAME { get; set; } public string NAME { get; set; } public string FULLNAME { get; set; } public string ENNAME { get; set; } public string ADDRESS { get; set; } public string ENADDRESS { get; set; } public string POSTCODE { get; set; } public string OFFICEPHONE { get; set; } public string FAX { get; set; } public string EMAIL { get; set; } public bool? ISDELETED { get; set; } public bool? ISDISABLE { get; set; } public string WorkWeixinCorpid { get; set; } public string WorkWeixinCorpsecret { get; set; } public string WorkWeixinAgentid { get; set; } public string WorkWeixinServerUrl { get; set; } } }