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

34 lines
812 B
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 admin
/// </summary>
public class admin
{
public admin()
{
//
// TODO: Add constructor logic here
//
}
public int? num { get; set; }
public string u_id { get; set; }
public string u_name { get; set; }
public string power { get; set; }
public bool online { get; set; }
public bool? removeExist { get; set; }
}
}