12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace PTMedicalInsurance.Entity
- {
-
- public class FileUploadInput
- {
-
-
-
- public byte[] file_data { get; set; }
-
-
-
- public string filename { get; set; }
-
-
-
- public string fixmedins_code { get; set; }
- }
-
- public class FileUploadOutput
- {
-
-
-
- public string file_query_no { get; set; }
-
-
-
- public string filename { get; set; }
-
-
-
- public string fixmedins_code { get; set; }
-
-
-
- public string dld_endtime { get; set; }
- }
- }
|