using System; using System.Collections.Generic; using System.Text; namespace Model.ModelVm.LogVm { public class GetOperationVm:IndexPage { public string MenuName { get; set; } public string Type { get; set; } public string Msg { get; set; } public string StartTime { get; set; } public string EndTime { get; set; } /// /// 来源,0:系统 1:入库 2:出库 3:库内 /// public string ComeFrom { get; set; } } }