chengsc
2025-03-13 02abdb2a7821e1eacc2b8ddc91e398cd9906c8cf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
using System;
using System.Collections.Generic;
using System.Text;
 
namespace Model.ModelVm.LogVm
{
    public class GetOperationVm:IndexPage
    {
        public string MenuNo { get; set; }
        public string ParentNo { get; set; }
        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; }
 
        /// <summary>
        /// 来源,0:系统 1:入库 2:出库 3:库内
        /// </summary>
        public string ComeFrom { get; set; }
    }
}