27 lines
647 B
C#
27 lines
647 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Models.Models
|
|
{
|
|
/// <summary>
|
|
/// 样本记录
|
|
/// </summary>
|
|
public class sample_record
|
|
{
|
|
|
|
public int id { get; set; }
|
|
public string qrcode { get; set; }
|
|
public string check_item { get; set; }
|
|
public string jizhi { get; set; }
|
|
public string xuhao { get; set; }
|
|
public string standard_id { get; set; }
|
|
public string input_user { get; set; }
|
|
public DateTime inpu_date { get; set; }
|
|
public string weight { get; set; }
|
|
|
|
}
|
|
}
|