1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace OASystem.Domain.ViewModels.Groups
- {
- public class InvitationOfficialActivitiesView
- {
-
-
-
- public int Id { get; set; }
-
-
-
- public int DiId { get; set; }
-
-
-
- public string InviterArea { get; set; }
-
-
-
- public string Inviter { get; set; }
-
-
-
- public DateTime InviteTime { get; set; }
-
-
-
- public decimal InviteCosts { get; set; }
-
-
-
- public string Currency { get; set; }
-
-
-
- public int IsGoOfficaiaBussiness { get; set; }
-
-
-
- public string Attachment { get; set; }
-
-
-
- public int isAudit { get; set; }
- }
- }
|