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.
119 lines
4.8 KiB
C#
119 lines
4.8 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.Linq;
|
|
using System.Web;
|
|
|
|
namespace DSWeb.Common.DB
|
|
{
|
|
[Table("info_client")]
|
|
public class InfoClient
|
|
{
|
|
[Key]
|
|
public string GID { get; set; }
|
|
public string CODENAME { get; set; }
|
|
public string SHORTNAME { get; set; }
|
|
public string DESCRIPTION { get; set; }
|
|
public string NAME { get; set; }
|
|
public string EnFullName { get; set; }
|
|
public int? STATUS { get; set; }
|
|
public string ADDR { get; set; }
|
|
public string EMAIL { get; set; }
|
|
public string WEB { get; set; }
|
|
public string TEL { get; set; }
|
|
public string FAX { get; set; }
|
|
public string CHIEF { get; set; }
|
|
public string SALE { get; set; }
|
|
public string OP { get; set; }
|
|
public string DOC { get; set; }
|
|
public bool? ISCARRIER { get; set; }
|
|
public bool? ISBOOKING { get; set; }
|
|
public bool? ISYARD { get; set; }
|
|
public bool? ISTRUCK { get; set; }
|
|
public bool? ISCONTROLLER { get; set; }
|
|
public bool? ISCUSTOM { get; set; }
|
|
public bool? ISAGENT { get; set; }
|
|
public bool? ISAGENTCN { get; set; }
|
|
public bool? ISEXPRESS { get; set; }
|
|
public bool? ISAIRLINES { get; set; }
|
|
public bool? ISSHIPPER { get; set; }
|
|
public bool? ISCONSIGNEE { get; set; }
|
|
public bool? ISNOTIFYPARTY { get; set; }
|
|
public bool? ISWAREHOUSE { get; set; }
|
|
public string COUNTRY { get; set; }
|
|
public string PROVINCE { get; set; }
|
|
public string CITY { get; set; }
|
|
public string CORPID { get; set; }
|
|
public string BLCONTENT { get; set; }
|
|
public bool? ISSTOP { get; set; }
|
|
public string BillRises1 { get; set; }
|
|
public string BillRises2 { get; set; }
|
|
public string USDBillRises { get; set; }
|
|
public string RMBBillRises { get; set; }
|
|
public string RMBBank { get; set; }
|
|
public string RMBAccount { get; set; }
|
|
public string RMBOnlineNO { get; set; }
|
|
public string USDBank { get; set; }
|
|
public string USDAccount { get; set; }
|
|
public string USDOnlineNO { get; set; }
|
|
public string CustomAttributes1 { get; set; }
|
|
public string CustomAttributes2 { get; set; }
|
|
public decimal? USDMaxAmountCredit { get; set; }
|
|
public decimal? RMBMaxAmountCredit { get; set; }
|
|
public decimal? MaxAmountCredit { get; set; }
|
|
public string STLNAME { get; set; }
|
|
public string OPNAME { get; set; }
|
|
public DateTime? OPTIME { get; set; }
|
|
public string REMARK { get; set; }
|
|
public decimal? USDExchangeRate { get; set; }
|
|
public string STLDATE { get; set; }
|
|
public string STLFIRSTHALFDATE { get; set; }
|
|
public string STLMIDDLEDATE { get; set; }
|
|
public string STLDATEPJ { get; set; }
|
|
public string LEVEL { get; set; }
|
|
public string LOGINNAME { get; set; }
|
|
public string LOGINPASSWORD { get; set; }
|
|
public string QQ { get; set; }
|
|
public string MSN { get; set; }
|
|
public string MODIFIEDUSER { get; set; }
|
|
public DateTime? MODIFIEDTIME { get; set; }
|
|
public bool? ISWHARF { get; set; }
|
|
public bool? ISSHIPPINGAGENT { get; set; }
|
|
public string FARCODE { get; set; }
|
|
public string FAPCODE { get; set; }
|
|
public bool? ISINSURE { get; set; }
|
|
public bool? ISLEASING { get; set; }
|
|
public bool? ISTRADINGAGENCY { get; set; }
|
|
public bool? ISOTHER { get; set; }
|
|
public string OTHERS { get; set; }
|
|
public string UNITPRICE { get; set; }
|
|
public string REGISTRATIONNO { get; set; }
|
|
public string ORDERNO { get; set; }
|
|
public bool? ISENTERP { get; set; }
|
|
public string TAXNO { get; set; }
|
|
public string EDICODE { get; set; }
|
|
public string EDICODE2 { get; set; }
|
|
public string EDICODE3 { get; set; }
|
|
public string ORGANIZATIONCODE { get; set; }
|
|
public string PCORPNAME { get; set; }
|
|
public string InspectionNo { get; set; }
|
|
public bool? ISSHIPAGENCY { get; set; }
|
|
public byte? blstatus { get; set; }
|
|
public bool? ISSP { get; set; }
|
|
public string FEEFRT { get; set; }
|
|
public int? RCVMode { get; set; }
|
|
public string ICOURL { get; set; }
|
|
public string BSSOURCE { get; set; }
|
|
public string INVBANK { get; set; }
|
|
public string SALECORPID { get; set; }
|
|
public string INVADDRTEL { get; set; }
|
|
public string LOADPORT { get; set; }
|
|
|
|
//订舱模块发SO,SI的EDI代码
|
|
public string EDICODE_SO_SI { get; set; }
|
|
|
|
//发送INTTRA网站订舱的代码
|
|
public string CODE_INTTRA_WEB { get; set; }
|
|
}
|
|
} |