using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace PTMedicalInsurance.Entity
{
///
/// 【2502】转院备案撤销
/// 交易说明:通过此交易进行转院备案的撤销。
///
public class HospitalTransferRecordCancellationInput
{
///
/// 待遇申报明细流水号
///
public string trt_dcla_detl_sn { get; set; }
///
/// 人员编号
///
public string psn_no { get; set; }
///
/// 备注
/// 填写撤销原因
///
public string memo { get; set; }
}
}