using System; using System.Text; using System.Collections.Generic; using System.Data; namespace DSWeb.SoftMng.Model{ //company public class company { /// /// GID /// private string _gid; public string GID { get{ return _gid; } set{ _gid = value; } } /// /// CODENAME /// private string _codename; public string CODENAME { get{ return _codename; } set{ _codename = value; } } /// /// NAME /// private string _name; public string NAME { get{ return _name; } set{ _name = value; } } /// /// FULLNAME /// private string _fullname; public string FULLNAME { get{ return _fullname; } set{ _fullname = value; } } /// /// 公司英文名称 /// private string _enname; public string ENNAME { get{ return _enname; } set{ _enname = value; } } /// /// ADDRESS /// private string _address; public string ADDRESS { get{ return _address; } set{ _address = value; } } /// /// 公司英文地址 /// private string _enaddress; public string ENADDRESS { get{ return _enaddress; } set{ _enaddress = value; } } /// /// POSTCODE /// private string _postcode; public string POSTCODE { get{ return _postcode; } set{ _postcode = value; } } /// /// OFFICEPHONE /// private string _officephone; public string OFFICEPHONE { get{ return _officephone; } set{ _officephone = value; } } /// /// FAX /// private string _fax; public string FAX { get{ return _fax; } set{ _fax = value; } } /// /// EMAIL /// private string _email; public string EMAIL { get{ return _email; } set{ _email = value; } } /// /// WEBSITEURL /// private string _websiteurl; public string WEBSITEURL { get{ return _websiteurl; } set{ _websiteurl = value; } } /// /// LICENSECODE /// private string _licensecode; public string LICENSECODE { get{ return _licensecode; } set{ _licensecode = value; } } /// /// TAXCODE /// private string _taxcode; public string TAXCODE { get{ return _taxcode; } set{ _taxcode = value; } } /// /// 徽标 /// private byte[] _logo; public byte[] LOGO { get{ return _logo; } set{ _logo = value; } } /// /// CREATEUSER /// private string _createuser; public string CREATEUSER { get{ return _createuser; } set{ _createuser = value; } } /// /// CREATETIME /// private DateTime _createtime; public DateTime CREATETIME { get{ return _createtime; } set{ _createtime = value; } } /// /// 更新人gid /// private string _modifieduser; public string MODIFIEDUSER { get{ return _modifieduser; } set{ _modifieduser = value; } } /// /// 更新时间 /// private DateTime? _modifiedtime; public DateTime? MODIFIEDTIME { get{ return _modifiedtime; } set{ _modifiedtime = value; } } /// /// ISDELETED /// private bool? _isdeleted; public bool? ISDELETED { get{ return _isdeleted; } set{ _isdeleted = value; } } /// /// ISDISABLE /// private bool? _isdisable; public bool? ISDISABLE { get{ return _isdisable; } set{ _isdisable = value; } } /// /// PARENTID /// private string _parentid; public string PARENTID { get{ return _parentid; } set{ _parentid = value; } } /// /// 发票抬头 /// private string _billrises; public string BILLRISES { get{ return _billrises; } set{ _billrises = value; } } /// /// 支票抬头 /// private string _chequepayable; public string CHEQUEPAYABLE { get{ return _chequepayable; } set{ _chequepayable = value; } } /// /// 打印抬头1 /// private string _prtheadxml1; public string PRTHEADXML1 { get{ return _prtheadxml1; } set{ _prtheadxml1 = value; } } /// /// 打印抬头2 /// private string _prtheadxml2; public string PRTHEADXML2 { get{ return _prtheadxml2; } set{ _prtheadxml2 = value; } } /// /// 打印抬头3 /// private string _prtheadxml3; public string PRTHEADXML3 { get{ return _prtheadxml3; } set{ _prtheadxml3 = value; } } /// /// 打印抬头4 /// private string _prtheadxml4; public string PRTHEADXML4 { get{ return _prtheadxml4; } set{ _prtheadxml4 = value; } } /// /// 打印抬头5 /// private string _prtheadxml5; public string PRTHEADXML5 { get{ return _prtheadxml5; } set{ _prtheadxml5 = value; } } /// /// BANKSHEAD /// private string _bankshead; public string BANKSHEAD { get{ return _bankshead; } set{ _bankshead = value; } } /// /// GPSUser /// private string _gpsuser; public string GPSUser { get{ return _gpsuser; } set{ _gpsuser = value; } } /// /// GPSPassWord /// private string _gpspassword; public string GPSPassWord { get{ return _gpspassword; } set{ _gpspassword = value; } } /// /// ORGANIZATIONCODE /// private string _organizationcode; public string ORGANIZATIONCODE { get{ return _organizationcode; } set{ _organizationcode = value; } } /// /// FTPURL /// private string _ftpurl; public string FTPURL { get{ return _ftpurl; } set{ _ftpurl = value; } } /// /// DBNAME /// private string _dbname; public string DBNAME { get{ return _dbname; } set{ _dbname = value; } } /// /// LOCALCURR /// private string _localcurr; public string LOCALCURR { get{ return _localcurr; } set{ _localcurr = value; } } /// /// WORKFLOWMSG /// private string _workflowmsg; public string WORKFLOWMSG { get{ return _workflowmsg; } set{ _workflowmsg = value; } } /// /// openCustom /// private int _opencustom; public int openCustom { get{ return _opencustom; } set{ _opencustom = value; } } /// /// isDelegate /// private int _isdelegate; public int isDelegate { get{ return _isdelegate; } set{ _isdelegate = value; } } /// /// allowOpenMark2 /// private int _allowopenmark2; public int allowOpenMark2 { get{ return _allowopenmark2; } set{ _allowopenmark2 = value; } } /// /// TRADE_CODE /// private string _trade_code; public string TRADE_CODE { get{ return _trade_code; } set{ _trade_code = value; } } /// /// UNIT /// private string _unit; public string UNIT { get{ return _unit; } set{ _unit = value; } } /// /// VGMCODE /// private string _vgmcode; public string VGMCODE { get{ return _vgmcode; } set{ _vgmcode = value; } } } }