| 1234567891011121314151617181920212223242526272829303132333435 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace YTSoft.BaseCallCenter.Model
- {
- public class T_SYS_Time
- {
- public T_SYS_Time()
- { }
- #region Model
- private string _f_workstarttimes;
- private string _f_workendtimes;
-
- /// <summary>
- ///
- /// </summary>
- public string F_WorkStartTimes
- {
- set { _f_workstarttimes = value; }
- get { return _f_workstarttimes; }
- }
- /// <summary>
- ///
- /// </summary>
- public string F_WorkEndTimes
- {
- set { _f_workendtimes = value; }
- get { return _f_workendtimes; }
- }
- #endregion Model
- }
- }
|