25 lines
672 B
C#
25 lines
672 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Models.Models
|
|
{
|
|
public class tube_input
|
|
{
|
|
public string qrcode { get; set; }
|
|
public string item_name { get; set; }
|
|
public string tube_type { get; set; }
|
|
public string standrad_id { get; set; }
|
|
public string standrad { get; set; }
|
|
public string input_user { get; set; }
|
|
public DateTime input_date { get; set; }
|
|
public string weight { get; set; }
|
|
public int tube_count { get; set; }
|
|
public string bach_no { get; set; }
|
|
|
|
}
|
|
}
|