12345678910111213141516171819202122232425262728293031323334353637 |
- namespace Central.Control.Domain
- {
- using System;
- using System.Collections.Generic;
-
- public partial class COM_CUSCONTACT
- {
- public int ID { get; set; }
- public string NAME { get; set; }
- public Nullable<int> SEX { get; set; }
- public string PHOME { get; set; }
- public string TELNO { get; set; }
- public string SECONDPHONE { get; set; }
- public string QQ { get; set; }
- public string EMAIL { get; set; }
- public string WX { get; set; }
- public string COMPANY { get; set; }
- public string COMPADDRESS { get; set; }
- public string ZW { get; set; }
- public string ADDRESS { get; set; }
- public string PROV { get; set; }
- public string CITY { get; set; }
- public string REMARK { get; set; }
- public int FK_USERID { get; set; }
- public System.DateTime CREATETIME { get; set; }
- public string FK_TYPE { get; set; }
- }
- }
|