lixiaojun
2022-08-17 d3024a7b50b35a8f24c1bfe0f13f4f86cc63a253
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
 
namespace IStation
{
    /// <summary>
    /// 软件标签
    /// </summary>
    public class SoftTag
    {
        /// <summary>
        /// 主体程序
        /// </summary>
        public const string Main = "MAIN";
 
        /// <summary>
        /// GIS程序
        /// </summary>
        public const string GIS = "GIS";
 
        /// <summary>
        /// 上海原水
        /// </summary>
        public const string SHYS = "SHYS";
 
        /// <summary>
        /// 苏州金庭
        /// </summary>
        public const string SZJT = "SZJT";
    }
}