| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace CallCenterApi.Model
- {
- [Serializable]
- public partial class UserLeaveMes
- {
- public UserLeaveMes()
- { }
- #region Model
- private int _id;
- private string _code;
- private string _contents;
- private DateTime? _date;
- public int Id
- {
- set { _id = value; }
- get { return _id; }
- }
- public string Code
- {
- set { _code = value; }
- get { return _code; }
- }
- public string Contents
- {
- set { _contents = value; }
- get { return _contents; }
- }
- public DateTime? CreateTime
- {
- set { _date = value; }
- get { return _date; }
- }
- #endregion
- }
- }
|