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