123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace OASystem.Domain.ViewModels.Groups
- {
-
-
-
-
-
- public class GroupStatusView
- {
-
-
-
-
- public int Id { get; set; }
-
-
-
- public string? SalesQuoteNo { get; set; }
-
-
-
- public string? TourCode { get; set; }
-
-
-
- public string? JietuanOperator { get; set; }
-
-
-
- public int TeamLevId { get; set; }
-
-
-
- public string? TeamLev { get; set; }
-
-
-
- public int TeamTypeId { get; set; }
-
-
-
- public string? TeamType { get; set; }
-
-
-
- public string? TeamName { get; set; }
-
-
-
- public string? ClientName { get; set; }
-
-
-
- public string? ClientUnit { get; set; }
-
-
-
- public DateTime VisitDate { get; set; }
-
-
-
- public int VisitDays { get; set; }
-
-
-
- public int VisitPNumber { get; set; }
-
-
-
-
- public int IsSure { get; set; }
- }
- }
|