1234567891011121314151617 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace HNWD.Pregrant.Model
- {
- public class WD_CostInfo : ModelBase
- {
- public string ID = "0";
- public string COST_PATIENT_ID = string.Empty;
- public string COST_NAME = string.Empty;
- public string COST_VALUE = string.Empty;
- public string COST_CREATEDATE = string.Empty;
- public string COST_DATETIME = string.Empty;
- }
- }
|