Files
17168ERP/web/App_Code/Model/ViewModel/follower.cs
2025-08-29 01:27:25 +08:00

61 lines
1.6 KiB
C#

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>
/// Summary description for follower
/// </summary>
public class follower
{
public follower()
{
//
// TODO: Add constructor logic here
//
}
public int? num { get; set; }
public int? f_num { get; set; }
public int? leader { get; set; }
public int? appellation_id { get; set; }
public string f_number { get; set; }
public string u_name { get; set; }
public string sex { get; set; }
public string phone { get; set; }
public string id_code { get; set; }
public string address { get; set; }
public bool? ept_self { get; set; }
public Nullable<int> identity_type { get; set; }
public Nullable<System.DateTime> birthday { get; set; }
public Nullable<System.DateTime> birthday2 { get; set; }
public string country { get; set; }
public string country2 { get; set; }
}
public class followers_tablet
{
public followers_tablet()
{
//
// TODO: Add constructor logic here
//
}
public int? num { get; set; }
public int? f_num { get; set; }
public string type { get; set; }
public string title { get; set; }
}
}