migrate to new git
This commit is contained in:
48
web/App_Code/Model/ViewModel/bed_kind.cs
Normal file
48
web/App_Code/Model/ViewModel/bed_kind.cs
Normal file
@@ -0,0 +1,48 @@
|
||||
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 bed_kind
|
||||
/// </summary>
|
||||
public class bed_kind
|
||||
{
|
||||
public bed_kind()
|
||||
{
|
||||
//
|
||||
// TODO: Add constructor logic here
|
||||
//
|
||||
}
|
||||
public string kind { get; set; }
|
||||
public string sex { get; set; }
|
||||
public int? num { get; set; }
|
||||
public int? root { get; set; }
|
||||
}
|
||||
|
||||
public class bed_kind_detail
|
||||
{
|
||||
public bed_kind_detail()
|
||||
{
|
||||
//
|
||||
// TODO: Add constructor logic here
|
||||
//
|
||||
}
|
||||
public Nullable<int> bed_kind_id { get; set; }
|
||||
public string bed_name { get; set; }
|
||||
public Nullable<int> bed_type { get; set; }
|
||||
public string bed_type_txt { get; set; }
|
||||
public DateTime? inTime { get; set; }
|
||||
public int? num { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user