using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace QMAPP.Web.Models.Sys { /// /// 用户相关仓库 /// public class UserCorpModel { /// /// 序号 /// public int Seq { get; set; } /// ///仓库主键 /// public string CORPID { get; set; } /// ///仓库编号 /// public string CORPCODE { get; set; } /// ///仓库名称 /// public string CORPNAME { get; set; } /// /// 删除 /// public string DeleteAction { get; set; } } }