using System;
|
|
namespace Model
|
{
|
|
public class Material
|
{
|
public string MatNo { get; set; }
|
public string MatName { get; set; }
|
public string PackFormat { get; set; } //规格
|
public string Unit { get; set; } //单位
|
public string UnitNum { get; set; } // 单位ID
|
public string Nweight { get; set; } //净重
|
public string Gweight { get; set; } //毛重
|
public string Price { get; set; } //价格
|
public string Long { get; set; } //长
|
public string Width { get; set; } //宽
|
public string Height { get; set; } //高
|
public string Demo { get; set; } //备注
|
public string CreateUser { get; set; } //创建者
|
public DateTime CreateTime { get; set; }//创建时间
|
public string UpdateUser { get; set; } //更新者
|
public DateTime UpdateTime { get; set; }//更新时间
|
public string StoreCondition { get; set; }//存储条件
|
public string Guid { get; set; }
|
public string BrandId { get; set; }
|
public string BrandName { get; set; }
|
public string MatTypeId { get; set; }
|
public string MatType { get; set; }
|
public int IsDel { get; set; }
|
|
|
}
|
public class AjaxMatList : Material
|
{
|
public int pageIndex { get; set; }
|
public int pageSize { get; set; }
|
|
|
}
|
|
public class AjaxMatInfo : Material
|
{
|
public string Operation { get; set; }
|
public string list { get; set; }
|
}
|
|
|
}
|