using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace JiepeiWMS.Model.Interfaces { /// /// 模型接口:Id /// public interface IModId { /// /// 编号(主键) /// int Id { get; set; } } }