jinxin
2025-06-04 d968571628134ed672d9c6e4ba5cf32ba8d9644b
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace HH.WCS.NongFuChaYuan.WmsService
{
    internal class JobHelper
    {
        /// <summary>
        /// 密集型入库
        /// </summary>
        /// <returns></returns>
        public Location IntensiveIn() {
            Location location = null;
            return location;
        }
        /// <summary>
        /// 密集型出库
        /// </summary>
        /// <returns></returns>
        public Location IntensiveOut() {
            Location location = null;
            return location;
        }
 
        /// <summary>
        /// 普通入库
        /// </summary>
        /// <returns></returns>
        public Location NormalIn() {
            Location location = null;
            return location;
        }
 
        /// <summary>
        /// 普通出库
        /// </summary>
        /// <returns></returns>
        public Location NormalOut() {
            Location location = null;
            return location;
        }
    }
}