123456789101112131415161718192021222324 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace HNWD.Pregrant.Model
- {
- public class WD_NurseCfgInfo : ModelBase
- {
- public String ID = "0";
- public String NURSECFG_ID = string.Empty;
- public String NURSECFG_VALUE = string.Empty;
- public String NURSECFG_HIS_VALUE = string.Empty;
- public String NURSECFG_NAME = string.Empty;
- public String NURSECFG_COLOR = string.Empty;
- public String NURSECFG_CONTENT = string.Empty;
- public String NURSECFG_DATETIME = string.Empty;
-
- }
- }
|