HBMedInsuDirectorySelfpayProportion.cs 930 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace PTMedicalInsurance.Entity
  7. {
  8. public class HBMedInsuDirectorySelfpayProportion
  9. {
  10. public int ID { get; set; }
  11. public int HospitalDr { get; set; }
  12. public int InterfaceDr { get; set; }
  13. public string Code { get; set; }
  14. public string Name { get; set; }
  15. public string PersonnelType { get; set; }
  16. public string ProportionType { get; set; }
  17. public DateTime BeginDate { get; set; }
  18. public DateTime EndDate { get; set; }
  19. public string Proportion { get; set; }
  20. public string InsuranceAreaCode { get; set; }
  21. public string PoolAreaNO { get; set; }
  22. public string ValidFlag { get; set; }
  23. public string RequiredID { get; set; }
  24. public DateTime UpdateTime { get; set; }
  25. }
  26. }