bklLiudl
2025-04-07 4e8f58cb41c7b6d570fd1979d80f74ab8a4d00c2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
using System;
using System.Collections.Generic;
using System.Text;
using WMS.Entity;
 
namespace Model.ModelVm.DailyInventory
{
    /// <summary>
    /// 当天任务量 视图模型
    /// </summary>
    public class DailyInventoryVM : BaseEntity
    {
        public string TaskDay { get; set; } //天
        public string TaskType { get; set; } //任务类型 0 入库单 1 出库单  2 盘点单  3 移库单
        public string TaskNum { get; set; } //入库任务量
        public string ASoTaskNum { get; set; } //入库任务量
        public string SoTaskNum { get; set; } //出库任务量
        public string CheckTaskNum { get; set; } //盘点任务量
    }
}