wx
2022-02-18 b62ffe3c3a19aa7f2232c72d5fd81e893841c421
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
namespace ZTICInterface.Core.Extend;
 
public class MyConstant
{
    /// <summary>
    /// 缓存key
    /// </summary>
    public struct MyCacheKey
    {
        /// <summary>
        /// 自建进料page显示列
        /// </summary>
        public const string FeedSelfPageCol = "FeedSelfPageCol";
        /// <summary>
        /// 历史进料page显示列
        /// </summary>
        public const string FeedHistoryPageCol = "FeedHistoryPageCol";
        /// <summary>
        /// 工况page显示列
        /// </summary>
        public const string CasePageCol = "CasePageCol";
    }
}