123456789101112131415161718192021222324252627 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace HNWD.Pregrant.Model
- {
- public class WD_ProgramInfo : ModelBase
- {
- public string ID = "0";
- public string PROGRAM_TYPE = string.Empty;
- public string PROGRAM_NAME = string.Empty;
- public string PROGRAM_X = "0";
- public string PROGRAM_Y = "0";
- public string PROGRAM_WIDTH = "0";
- public string PROGRAM_HEIGHT = "0";
- public string PROGRAM_TEXT = string.Empty;
- public string PROGRAM_IMAGE = string.Empty;
- public string PROGRAM_MATRIX = string.Empty;
- public string PROGRAM_FORMAT = string.Empty;
- public string PROGRAM_ALIGN = string.Empty;
- public string PROGRAM_STAYINGTIME = "0";
- public string PROGRAM_DATETIME = DateTime.Now.ToString("yyyy/MM/dd HH:mm:ss");
- public string PROGRAM_DEVICE_ID = "0";
- }
- }
|