118 lines
2.8 KiB
C#
118 lines
2.8 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
|
|
namespace _2021_backend.OldModels
|
|
{
|
|
public class InterviewTime
|
|
{
|
|
public int ID { get; set; }
|
|
public string Day { get; set; }
|
|
public string BeginTime { get; set; }
|
|
public string Place { get; set; }
|
|
public string Chief { get; set; }
|
|
public int TakenNum { get; set; }
|
|
public int NowNum { get; set; }
|
|
public bool SendSMS { get; set; }
|
|
public List<int> Students { get; set; }
|
|
}
|
|
|
|
public class Notes
|
|
{
|
|
public int ID { get; set; }
|
|
public string OperatorId { get; set; }
|
|
public string OperatorName { get; set; }
|
|
|
|
public string Content { get; set; }
|
|
public DateTime AddTime { get; set; }
|
|
public int RecordId { get; set; }
|
|
public Notes() { }
|
|
|
|
|
|
}
|
|
|
|
public enum Status
|
|
{
|
|
Pending,
|
|
Pass,
|
|
Fail
|
|
}
|
|
public enum Department
|
|
{
|
|
电脑部 = 1,
|
|
电器部 = 2,
|
|
文宣部,
|
|
人资部,
|
|
财外部
|
|
}
|
|
public enum Grade
|
|
{
|
|
大一 = 1,
|
|
大二 = 2,
|
|
大三,
|
|
大四
|
|
}
|
|
|
|
|
|
public class Record
|
|
{
|
|
|
|
public int rid { get; set; }
|
|
public string name { get; set; }
|
|
public string id_student { get; set; }
|
|
public bool sex { get; set; }
|
|
public int grade { get; set; }
|
|
public string major { get; set; }
|
|
public string email { get; set; }
|
|
public string phone { get; set; }
|
|
public int firstWish { get; set; }
|
|
public int secondWish { get; set; }
|
|
public int thirdWish { get; set; }
|
|
public bool adjustment { get; set; }
|
|
public string firstReason { get; set; }
|
|
public string secondReason { get; set; }
|
|
public string thirdReason { get; set; }
|
|
public string question1 { get; set; }
|
|
public string question2 { get; set; }
|
|
public string strguid { get; set; }
|
|
|
|
public List<int> Times { get; set; }
|
|
|
|
|
|
public DateTime addedDate { get; set; }
|
|
public Status status { get; set; }
|
|
public string ip { get; set; }
|
|
//活动场次ID
|
|
public int InterviewID { get; set; }
|
|
public string InterviewTime { get; set; }
|
|
|
|
public int FinalResult { get; set; }
|
|
}
|
|
|
|
|
|
public class SMS
|
|
{
|
|
public int ID { get; set; }
|
|
|
|
public string id_student { get; set; }
|
|
|
|
public DateTime sendTime { get; set; }
|
|
|
|
public string type { get; set; }
|
|
public string OperatorName { get; set; }
|
|
public int Status { get; set; }
|
|
|
|
public SMS() { }
|
|
}
|
|
|
|
public class User
|
|
{
|
|
public string Uid { get; set; }
|
|
public long stuID { get; set; }
|
|
public string Name { get; set; }
|
|
public string Secret { get; set; }
|
|
public bool isManager { get; set; }
|
|
|
|
}
|
|
}
|