| 12345678910111213141516171819 |
- using Newtonsoft.Json;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace PTMedicalInsurance.Entity.WorkInjury.Request
- {
- class RequestQ002
- {
- /// <summary>
- /// 就诊凭证类型
- /// </summary>
- [JsonProperty("psn_no")]
- public string MdtrtcertType { get; set; }
- }
- }
|