| 1234567891011121314151617181920212223242526 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace YZXYH.Repository.Models
- {
- [Serializable]
- public partial class Questionnaire
- {
- public string Id { get; set; }
- public string Title { get; set; }
- public string QuestionContent { get; set; }
- public string Footer { get; set; }
- public int Status { get; set; }
- public DateTime? StartDate { get; set; }
- public string Remark { get; set; }
- public string IsLocked { get; set; }
- public DateTime? TimeCreated { get; set; }
- public DateTime? TimeModify { get; set; }
- public string CreateUserNo { get; set; }
- public string ModifyUserNo { get; set; }
- }
- }
|