using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace YTSoft.BaseCallCenter.MVCWeb.Models { public class LostGoodsModel { /// /// 商品种类列表 /// public List GoodsKindsModelList { get; set; } /// /// 商品属性列表 /// public List GoodsPropertyModelList { get; set; } /// /// 部门数据 /// public List DepartmentList { get; set; } /// /// 要操作的数据行主键 /// public string KeyList { get; set; } /// /// 当前日期 /// private DateTime _nowDateTime; public DateTime NowDateTime { set { _nowDateTime = value; } get { return DateTime.Now; } } /// /// 权限 /// public int RightFlag { get; set; } } }