CmPartner.cs 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. //------------------------------------------------------------------------------
  2. // <auto-generated>
  3. // 이 코드는 템플릿에서 생성되었습니다.
  4. //
  5. // 이 파일을 수동으로 변경하면 응용 프로그램에 예기치 않은 동작이 발생할 수 있습니다.
  6. // 코드가 다시 생성되면 이 파일에 대한 수동 변경 사항을 덮어씁니다.
  7. // </auto-generated>
  8. //------------------------------------------------------------------------------
  9. namespace iBemsDataService.Model
  10. {
  11. using System;
  12. using System.Collections.Generic;
  13. public partial class CmPartner
  14. {
  15. public CmPartner()
  16. {
  17. this.FmsConstruction = new HashSet<FmsConstruction>();
  18. this.FmsWorkRequest = new HashSet<FmsWorkRequest>();
  19. this.FmsWorkSchedule = new HashSet<FmsWorkSchedule>();
  20. this.FmsContract = new HashSet<FmsContract>();
  21. }
  22. public int SiteId { get; set; }
  23. public int PartnerId { get; set; }
  24. public int PartnerTypeId { get; set; }
  25. public string Name { get; set; }
  26. public string RegistrationNo { get; set; }
  27. public string RepresentativeName { get; set; }
  28. public string PhoneNo { get; set; }
  29. public string FaxNo { get; set; }
  30. public string SalesName { get; set; }
  31. public string SalesPhoneNo { get; set; }
  32. public string AddressZip1 { get; set; }
  33. public string AddressZip2 { get; set; }
  34. public string Address1 { get; set; }
  35. public string Adderss2 { get; set; }
  36. public string HomepageUri { get; set; }
  37. public string Note { get; set; }
  38. public Nullable<bool> IsUse { get; set; }
  39. public virtual CmPartnerType CmPartnerType { get; set; }
  40. public virtual ICollection<FmsConstruction> FmsConstruction { get; set; }
  41. public virtual ICollection<FmsWorkRequest> FmsWorkRequest { get; set; }
  42. public virtual ICollection<FmsWorkSchedule> FmsWorkSchedule { get; set; }
  43. public virtual ICollection<FmsContract> FmsContract { get; set; }
  44. }
  45. }