WD_CostInfo.cs 466 B

1234567891011121314151617
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace HNWD.Pregrant.Model
  6. {
  7. public class WD_CostInfo : ModelBase
  8. {
  9. public string ID = "0";
  10. public string COST_PATIENT_ID = string.Empty;
  11. public string COST_NAME = string.Empty;
  12. public string COST_VALUE = string.Empty;
  13. public string COST_CREATEDATE = string.Empty;
  14. public string COST_DATETIME = string.Empty;
  15. }
  16. }