| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153 |
- using System;
- namespace CallCenterApi.Model
- {
- /// <summary>
- /// T_Sys_Volunteer:实体类(属性说明自动提取数据库字段的描述信息)
- /// </summary>
- [Serializable]
- public partial class T_Sys_Volunteer
- {
- public T_Sys_Volunteer()
- { }
- #region Model
- private long _id;
- private string _name;
- private int? _gender;
- private string _nation;
- private string _tel;
- private string _idcardno;
- private string _politicaloutlook;
- private string _specialty;
- private string _post;
- private string _placeofresidence;
- private string _serviceintention;
- private int? _participatein;
- private string _opinion;
- private int? _isdelete;
- private DateTime? _createtime;
- /// <summary>
- ///
- /// </summary>
- public long ID
- {
- set { _id = value; }
- get { return _id; }
- }
- /// <summary>
- ///
- /// </summary>
- public string Name
- {
- set { _name = value; }
- get { return _name; }
- }
- /// <summary>
- ///
- /// </summary>
- public int? Gender
- {
- set { _gender = value; }
- get { return _gender; }
- }
- /// <summary>
- ///
- /// </summary>
- public string Nation
- {
- set { _nation = value; }
- get { return _nation; }
- }
- /// <summary>
- ///
- /// </summary>
- public string Tel
- {
- set { _tel = value; }
- get { return _tel; }
- }
- /// <summary>
- ///
- /// </summary>
- public string IDcardNo
- {
- set { _idcardno = value; }
- get { return _idcardno; }
- }
- /// <summary>
- ///
- /// </summary>
- public string Politicaloutlook
- {
- set { _politicaloutlook = value; }
- get { return _politicaloutlook; }
- }
- /// <summary>
- ///
- /// </summary>
- public string Specialty
- {
- set { _specialty = value; }
- get { return _specialty; }
- }
- /// <summary>
- ///
- /// </summary>
- public string Post
- {
- set { _post = value; }
- get { return _post; }
- }
- /// <summary>
- ///
- /// </summary>
- public string Placeofresidence
- {
- set { _placeofresidence = value; }
- get { return _placeofresidence; }
- }
- /// <summary>
- ///
- /// </summary>
- public string Serviceintention
- {
- set { _serviceintention = value; }
- get { return _serviceintention; }
- }
- /// <summary>
- ///
- /// </summary>
- public int? Participatein
- {
- set { _participatein = value; }
- get { return _participatein; }
- }
- /// <summary>
- ///
- /// </summary>
- public string Opinion
- {
- set { _opinion = value; }
- get { return _opinion; }
- }
- /// <summary>
- ///
- /// </summary>
- public int? IsDelete
- {
- set { _isdelete = value; }
- get { return _isdelete; }
- }
- /// <summary>
- ///
- /// </summary>
- public DateTime? CreateTime
- {
- set { _createtime = value; }
- get { return _createtime; }
- }
- #endregion Model
- }
- }
|