tangxu
2022-11-14 a791c1a410b0adee5faca390391d894d076ca9a8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace IStation.Application
{
    internal class Constant
    {
        /// <summary>
        /// 报修单
        /// </summary>
        public const string RequestStorageHouse = "RepairRequestForm";
 
        /// <summary>
        /// 维修单
        /// </summary>
        public const string TaskStorageHouse = "RepairTaskForm";
    }
}