1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- 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 VisaFeeInfoView: Grp_VisaFeeInfo
- {
- }
- public class VisaFeeInfosView
- {
- public int Id { get; set; }
-
-
-
- public int IsChecked { get; set; }
-
-
-
- public string Country { get; set; }
-
-
-
- public decimal VisaFee { get; set; }
-
-
-
-
-
- public int OBType { get; set; } = 1;
-
-
-
-
- public string OBTypeStr
- {
- get
- {
- string str = "Unknown";
- if (OBType == 1) str = "大公务";
- else if (OBType == 2) str = "小公务";
- return str;
- }
- }
-
-
-
-
-
- public decimal AgencyFee { get; set; }
-
-
-
- public decimal OtherFee { get; set; }
- }
- }
|