CmCompany.cs 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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 CmCompany
  14. {
  15. public CmCompany()
  16. {
  17. this.CmDepartment = new HashSet<CmDepartment>();
  18. this.CmUser = new HashSet<CmUser>();
  19. this.FmsAccident = new HashSet<FmsAccident>();
  20. }
  21. public int SiteId { get; set; }
  22. public int CompanyId { get; set; }
  23. public int CompanyTypeId { get; set; }
  24. public string Name { get; set; }
  25. public string PhoneNo { get; set; }
  26. public string FaxNo { get; set; }
  27. public string RepresentativeName { get; set; }
  28. public string SalesName { get; set; }
  29. public string SalesPhoneNo { get; set; }
  30. public string AddressZip1 { get; set; }
  31. public string AddressZip2 { get; set; }
  32. public string Address1 { get; set; }
  33. public string Adderss2 { get; set; }
  34. public string Homepage { get; set; }
  35. public string Comment { get; set; }
  36. public Nullable<bool> IsUse { get; set; }
  37. public virtual CmCompanyType CmCompanyType { get; set; }
  38. public virtual ICollection<CmDepartment> CmDepartment { get; set; }
  39. public virtual ICollection<CmUser> CmUser { get; set; }
  40. public virtual ICollection<FmsAccident> FmsAccident { get; set; }
  41. public virtual CmSite CmSite { get; set; }
  42. }
  43. }