using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace PTMedicalInsurance.Entity
{
    /// 
    /// 【2506】人员定点备案撤销
    /// 交易说明:通过此交易撤销医保局还未审核的人员定点备案信息。
    /// 
    public class PersonFixedPointRecordCancellationInput
    {
        /// 
        /// 待遇申报明细流水号
        /// 
        public string trt_dcla_detl_sn { get; set; }
        /// 
        /// 人员编号
        /// 
        public string psn_no { get; set; }
        /// 
        /// 备注
        /// 
        public string memo { get; set; }
    }
}