Admin
2026-03-28 346e8eafb9e91deb770d098ba5456aa533c015a1
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
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace WIDESEAWCS_DTO.Enum
{
    public enum Dt_PlatformStationEnum
    {
        /// <summary>
        /// 出入库口
        /// </summary>
        [Description("出入库口")]
        InOutPlatform = 1,
        /// <summary>
        /// 出库口
        /// </summary>
        [Description("出库口")]
        OutPlatform = 2,
    }
 
    
}