using System;
using System.Linq;
using System.Text;
using SqlSugar;
namespace Admin.Core.Model
{
///
///
///
[SugarTable("Pmt_material", "cwss_xl")]
public class Pmt_material
{
public Pmt_material()
{
}
///
/// Desc:
/// Default:
/// Nullable:False
///
[SugarColumn(IsPrimaryKey = true)]
public string ID { get; set; }
///
/// Desc:
/// Default:
/// Nullable:False
///
[SugarColumn(IsIdentity = true)]
public int MID { get; set; }
///
/// Desc:
/// Default:
/// Nullable:True
///
public string Material_code { get; set; }
///
/// Desc:
/// Default:
/// Nullable:True
///
public string Material_name { get; set; }
///
/// Desc:
/// Default:
/// Nullable:True
///
public string Remark { get; set; }
///
/// Desc:
/// Default:
/// Nullable:True
///
public string Batch_number { get; set; }
///
/// Desc:
/// Default:
/// Nullable:True
///
public string Barcode1 { get; set; }
///
/// Desc:
/// Default:
/// Nullable:True
///
public string Barcode3 { get; set; }
///
/// Desc:
/// Default:
/// Nullable:True
///
public string Barcode2 { get; set; }
///
/// Desc:
/// Default:
/// Nullable:True
///
public string IsEnable { get; set; }
}
}