1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Models
- {
-
-
-
- public class AirAdvanceInquiry
- {
-
-
-
- public int Id { get; set; }
-
-
-
- public int Diid { get; set; }
-
-
-
- public string Area { get; set; }
-
-
-
- public string Airlines { get; set; }
-
-
-
- public string Shift { get; set; }
-
-
-
- public string StartTime { get; set; }
-
-
-
- public string EndTime { get; set; }
-
-
-
- public string SpaceType { get; set; }
-
-
-
- public string SelectTime { get; set; }
-
-
-
- public float LowestPrice { get; set; }
-
-
-
- public string Remark { get; set; }
-
-
-
- public int Oper { get; set; }
-
-
-
- public string OperDate { get; set; }
-
-
-
- public int Isdel { get; set; }
-
-
-
- public float FullPrice { get; set; }
-
-
-
- public float InstantPrice { get; set; }
- }
- }
|