using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Data; using System.Configuration; //using System.Data.OleDb; //using System.Data.SqlClient; using System.Collections; using Newtonsoft.Json; using System.ComponentModel; using System.Globalization; namespace Model.ViewModel { /// /// Summary description for member /// public class member { public member() { // // TODO: Add constructor logic here // } public Nullable group_kind { get; set; } public Nullable title_kind { get; set; } public string u_name { get; set; } public string sex { get; set; } public string m_number { get; set; } public Nullable starttime { get; set; } public Nullable offtime { get; set; } } public class member_check { public member_check() { // // TODO: Add constructor logic here // } public Nullable group_kind { get; set; } public string u_name { get; set; } public int? check_date_year { get; set; } public int? check_date_month { get; set; } } }