using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace PTMedicalInsurance.Entity.Local { /// /// 撤销出院结算 接口输入实体类 /// public class DestroyZyjsInput { /// /// 病人结算号 /// public string P_Jshid { get; set; } /// /// 病历号 /// public string P_blh { get; set; } } /// /// 撤销出院结算 接口输出实体类 /// public class DestroyZyjsOutput { /// /// 执行代码 /// 说明:0为成功,其他为失败,参考第二章第3节; /// public string Resultcode { get; set; } } }