Admin
6 天以前 bd6818fc9d40f343547bafca0743658f3c0379dc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
/*
*所有关于VV_ContainerInfo类的业务代码接口应在此处编写
*/
 
using WIDESEA.Core.BaseProvider;
using WIDESEA.Entity.DomainModels;
using WIDESEA.Core.Utilities;
using System.Linq.Expressions;
using WIDESEA.Common.CustomModels;
using System.Collections.Generic;
using WIDESEA.Services.Services;
using WIDESEA.Core.EFDbContext;
 
namespace WIDESEA.Services.IServices
{
    public partial interface IVV_ContainerInfoService
    {
 
 
 
        /// <summary>
        /// 前端调用的轴承手动指定出库功能
        /// </summary>
        /// <param name="saveModel"></param>
        /// <returns></returns>
        public WebResponseContent BoxOutboundByManual(SaveModel saveModel);
 
 
        /// <summary>
        /// 供前端的库存平面图调用,获取数据 
        /// </summary>
        /// <param name="saveModel"></param>
        /// <returns></returns>
        public WebResponseContent SelectContainerList(SaveModel saveModel);
 
 
        /// <summary>
        /// 锁定或者取消锁定库存
        /// </summary>
        /// <param name="saveModel"></param>
        /// <returns></returns>
        public WebResponseContent UpdateLockStateForContianer(SaveModel saveModel);
 
 
        /// <summary>
        /// 添加一条库存记录
        /// </summary>
        /// <param name="saveModel"></param>
        /// <returns></returns>
        public WebResponseContent addGoodsRecord(SaveModel saveModel);
 
 
        /// <summary>
        /// 手动指定添加一条测量记录(手动选中的测量轴承不计算时间)
        /// </summary>
        /// <param name="saveModel"></param>
        /// <returns></returns>
        public WebResponseContent addMeasureTaskByMannual(SaveModel saveModel);
 
 
        /// <summary>
        /// 移库出库
        /// </summary>
        /// <param name="saveModel"></param>
        /// <returns></returns>
        public WebResponseContent MoveContainerAction(SaveModel saveModel);
 
 
        /// <summary>
        /// 测量出库复核
        /// </summary>
        /// <param name="saveModel"></param>
        /// <returns></returns>
        public WebResponseContent AddCheckTaskAction(SaveModel saveModel);
 
        /// <summary>
        /// 查询大屏数据
        /// </summary>
        /// <returns></returns>
        public WebResponseContent QueryHomeInfo(SaveModel saveModel);
        /// <summary>
        /// 获取过期产品
        /// </summary>
        /// <returns></returns>
        public WebResponseContent Getgqrkts();
    }
}