You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
808 B

2 years ago
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel.DataAnnotations.Schema;
  4. using System.ComponentModel.DataAnnotations;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. namespace Shentun.Peis.PlugIns
  9. {
  10. public class ChargeRequestForPlugIns
  11. {
  12. /// <summary>
  13. /// 收费申请单号
  14. /// </summary>
  15. public string ChargeRequestNo { get; set; }
  16. /// <summary>
  17. /// HIS收费单号
  18. /// </summary>
  19. public string HisChargeNo { get; set; }
  20. /// <summary>
  21. /// 0、申请 1-收费,2-退费
  22. /// </summary>
  23. public char ChargeRequestFlag { get; set; }
  24. public List<ChargeRequestAsbitemForPlugIns> Asbitems = new List<ChargeRequestAsbitemForPlugIns> ();
  25. }
  26. }