WD_NurseCfgInfo.cs 624 B

123456789101112131415161718192021222324
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace HNWD.Pregrant.Model
  7. {
  8. public class WD_NurseCfgInfo : ModelBase
  9. {
  10. public String ID = "0";
  11. public String NURSECFG_ID = string.Empty;
  12. public String NURSECFG_VALUE = string.Empty;
  13. public String NURSECFG_HIS_VALUE = string.Empty;
  14. public String NURSECFG_NAME = string.Empty;
  15. public String NURSECFG_COLOR = string.Empty;
  16. public String NURSECFG_CONTENT = string.Empty;
  17. public String NURSECFG_DATETIME = string.Empty;
  18. }
  19. }