| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace CallCenterApi.Model
- {
- [Serializable]
- public partial class NewsMassge
- {
- public NewsMassge()
- { }
- #region Model
- private int _id;
- private string _title;
- private string _contents;
- private string _fabu;
- private string _name;
- private DateTime? _date;
- private DateTime? _update;
- public int Id
- {
- set { _id = value; }
- get { return _id; }
- }
- public string Title
- {
- set { _title = value; }
- get { return _title; }
- }
- public string Contents
- {
- set { _contents = value; }
- get { return _contents; }
- }
- public string FabuCode
- {
- set { _fabu = value; }
- get { return _fabu; }
- }
- public string FabuName
- {
- set { _name = value; }
- get { return _name; }
- }
- public DateTime? FabuDate
- {
- set { _date = value; }
- get { return _date; }
- }
- public DateTime? UpdateTime
- {
- set { _update = value; }
- get { return _update; }
- }
- #endregion
- }
- }
|