You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
1.1 KiB
C#
48 lines
1.1 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Mesnac.Action.ChemicalWeighing.Entity.material
|
|
{
|
|
/// <summary>
|
|
/// 实体类Pmt_material
|
|
/// </summary>
|
|
[Serializable]
|
|
public class xl_material
|
|
{
|
|
|
|
#region 公有属性
|
|
|
|
public string ID { get; set; }
|
|
|
|
public string Material_code { get; set; }
|
|
|
|
public string Material_name { get; set; }
|
|
public string Remark { get; set; }
|
|
|
|
public string Batch_number { get; set; }
|
|
|
|
public string Barcode1 { get; set; }
|
|
|
|
public string Barcode2 { get; set; }
|
|
public string Barcode3 { get; set; }
|
|
/// <summary>
|
|
/// 是否启用
|
|
/// </summary>
|
|
public string IsEnable { get; set; }
|
|
|
|
#endregion
|
|
|
|
/// <summary>
|
|
/// 重写ToString方法
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
public override string ToString()
|
|
{
|
|
return String.Format("{0}", this.Material_name);
|
|
}
|
|
}
|
|
}
|