43 lines
890 B
C#
43 lines
890 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace DOAN.Model.Mobile.Dto
|
|
{
|
|
public class MaterialModel
|
|
{
|
|
public string Partnumber { get; set; }
|
|
|
|
public string MaterialName { get; set; }
|
|
public string Batchnumber { get; set; }
|
|
|
|
public float quantity { get; set; }
|
|
|
|
public string Code { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 颜色
|
|
/// </summary>
|
|
public string Color { get; set; }
|
|
|
|
/// <summary>
|
|
/// 规格型号
|
|
/// </summary>
|
|
public string Specification { get; set; }
|
|
|
|
/// <summary>
|
|
/// 计量单位
|
|
/// </summary>
|
|
public string Unit { get; set; }
|
|
|
|
/// <summary>
|
|
/// 描述
|
|
/// </summary>
|
|
public string Description { get; set; }
|
|
|
|
}
|
|
}
|