1234567891011121314151617181920212223242526272829303132333435363738394041 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace PTMedicalInsurance.Entity
- {
- public class HBMedInsuDirectorySelfpayProportion
- {
- public int ID { get; set; }
- public int HospitalDr { get; set; }
- public int InterfaceDr { get; set; }
- public string Code { get; set; }
- public string Name { get; set; }
- public string PersonnelType { get; set; }
- public string ProportionType { get; set; }
- public DateTime BeginDate { get; set; }
- public DateTime EndDate { get; set; }
- public string Proportion { get; set; }
- public string InsuranceAreaCode { get; set; }
- public string PoolAreaNO { get; set; }
- public string ValidFlag { get; set; }
- public string RequiredID { get; set; }
- public DateTime UpdateTime { get; set; }
- }
- }
|