12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- using OASystem.Domain.Entities.Groups;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace OASystem.Domain.ViewModels.Groups
- {
- public class VisitingClientsView:Grp_VisitingClients
- {
- }
- public class VisitingClientsListView
- {
- public int RowNumber { get; set; }
-
-
-
-
- public int Id { get; set; }
-
-
-
- public DateTime BeginDt { get; set; }
-
-
-
- public DateTime EndDt { get; set; }
-
-
-
- public string CustomerUnit { get; set; }
-
-
-
- public string CustomerJob { get; set; }
-
-
-
- public string CustomerName { get; set; }
-
-
-
- public string CustomerContact { get; set; }
-
-
-
- public string Remark { get; set; }
- public string Operator { get; set; }
- public string OperationDt { get; set; }
- }
- }
|