using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace Warehouse.WebApi.Model { public class ApiBaseModel { /// /// 用户唯一识别码 /// public string Token { get; set; } } }