48 lines
1.2 KiB
C#
48 lines
1.2 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 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; }
|
|
}
|
|
} |