| 12345678910111213141516171819202122232425262728293031323334353637 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace YZXYH.Repository.Models
- {
- [Serializable]
- public partial class QuestionnaireItem
- {
- public string Id { get; set; }
- public string QuestionnaireNo { get; set; }
- public string QuestionnaireTitle { get; set; }
- public string FullName { get; set; }
- public short Gender { get; set; }
- public short GraduationYear { get; set; }
- public string Class1 { get; set; }
- public short Class2 { get; set; }
- public string Headmaster { get; set; }
- public string Profession { get; set; }
- public string WorkUnit { get; set; }
- public string Duties { get; set; }
- public string Industry { get; set; }
- public string WorkUnitAddress { get; set; }
- public string FamilyAddress { get; set; }
- public string Speciality { get; set; }
- public string Hobby { get; set; }
- public string QQ { get; set; }
- public string WeChat { get; set; }
- public string PhoneNumber { get; set; }
- public string Email { get; set; }
- public DateTime? CreateDate { get; set; }
- public string Remark { get; set; }
- public short JoinAddressBook { get; set; }
- }
- }
|