WD_ProgramInfoRaw.cs 927 B

123456789101112131415161718192021222324252627
  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_ProgramInfoRaw : ModelBase
  8. {
  9. public string ID = "0";
  10. public string PROGRAM_TYPE = string.Empty;
  11. public string PROGRAM_NAME = string.Empty;
  12. public string PROGRAM_X = "0";
  13. public string PROGRAM_Y = "0";
  14. public string PROGRAM_WIDTH = "0";
  15. public string PROGRAM_HEIGHT = "0";
  16. public string PROGRAM_TEXT = string.Empty;
  17. public string PROGRAM_IMAGE = string.Empty;
  18. public string PROGRAM_MATRIX = string.Empty;
  19. public string PROGRAM_FORMAT = string.Empty;
  20. public string PROGRAM_ALIGN = string.Empty;
  21. public string PROGRAM_STAYINGTIME = "0";
  22. public string PROGRAM_DATETIME = DateTime.Now.ToString("yyyy/MM/dd HH:mm:ss");
  23. public string PROGRAM_DEVICE_ID = "0";
  24. }
  25. }