migrate to new git

This commit is contained in:
2025-08-29 01:27:25 +08:00
parent 946eb9961e
commit af2c152ef6
8623 changed files with 1000453 additions and 1 deletions

View 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; }
}
}