You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
DS7/DSWeb/Areas/MvcShipping/DB/Company.cs

32 lines
1.1 KiB
C#

2 years ago
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; }
}
}