12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- using OASystem.Domain.Entities.Customer;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace OASystem.Domain.ViewModels.CRM
- {
-
-
-
- public class CustomerCompanyView : Crm_VisaCustomerCompany
- { }
-
-
-
-
- public class CustomerCompanyListView
- {
-
-
-
- public int Id { get; set; }
-
-
-
- public string CompanyFullName { get; set; }
-
-
-
- public string CompanyAbbreviation { get; set; }
-
-
-
- public string Address { get; set; }
-
-
-
- public string PostCodes { get; set; }
-
-
-
- public string UserName { get; set; }
-
-
-
- public DateTime CreateTime { get; set; }
-
-
-
- public string Remark { get; set; }
- }
- }
|