using CMS.Plugin.MyExtension.Domain; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CMS.Plugin.HIAWms.Domain.WmsMaterialTypes { /// /// 物料类型 /// public class WmsMaterialType : MyFullAuditedAggregateRoot { /// /// 类型描述 /// public string MaterialTypeDesc { get; set; } /// /// 类型编码 /// public string MaterialTypeCode { get; set; } /// /// Adjusts the sort. /// /// The sort. public void AdjustSort(int sort) { Sort = sort; } } }