using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace JiepeiWMS.Model.Interfaces { /// /// 模型接口:排序 /// public interface IModSortBy : IModId { /// /// 排序编号(唯一) /// int SortById { get; set; } } }