123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace HNWD.Pregrant.Model
- {
- public class WD_ZoneInfo : ModelBase
- {
- [Nick("ID")]
- public String ID = "0";
- [Nick("PartitionNo")]
- public String ZONE_ZONEID = string.Empty;
- [Nick("FileName")]
- public string ZONE_FILELIST = string.Empty;
- [Nick("Status")]
- public String ZONE_STATUS = string.Empty;
- [Nick("Remarks")]
- public string ZONE_CONTENT = string.Empty;
- [Nick("Weeks")]
- public string ZONE_WEEK = string.Empty;
- [Nick("StartTime")]
- public string ZONE_STARTTIME = string.Empty;
- [Nick("EndTime")]
- public string ZONE_ENDTIME = string.Empty;
- public string ZONE_DATETIME = string.Empty;
- /////////////////////////////
- //////////////////////////////
- //[Ignore]
- //public String PartitionNo = string.Empty;
- //[Ignore]
- //public String FileName = string.Empty;
- //[Ignore]
- //public string Status = string.Empty;
- //[Ignore]
- //public String Remarks = string.Empty;
- //[Ignore]
- //public string Weeks = string.Empty;
- //[Ignore]
- //public string StartTime = string.Empty;
- //[Ignore]
- //public string EndTime = string.Empty;
- ///////////////////////////
- //////////////////////////
- ////其他
- //[Ignore]
- //public string isChecked = string.Empty;
- }
- }
|