You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
583 B
21 lines
583 B
namespace Tiobon.Core.Model;
|
|
|
|
public class Ghre_ESSSurvey
|
|
{
|
|
public long Id { get; set; }
|
|
public string SurveyClass { get; set; }
|
|
public string SurveyName { get; set; }
|
|
public DateTime? BeginTime { get; set; }
|
|
public DateTime? EndTime { get; set; }
|
|
public DateTime? SubmitDate { get; set; }
|
|
public string Status { get; set; }
|
|
public string SurveyStatus { get; set; }
|
|
|
|
public string BeginEndTime { get; set; }
|
|
public string IsAnonymous1 { get; set; }
|
|
public bool? IsAnonymous { get; set; }
|
|
public bool? IsSubmit { get; set; }
|
|
|
|
|
|
|
|
} |