zhao
2021-07-19 8347f2fbddbd25369359dcb2da1233ac48a19fdc
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
47
48
49
50
51
52
using HH.WMS.Entitys.Common;
/********************************************************************************
 
** auth: DBS
 
** date: 2019/2/26 13:52:53
 
** desc: 尚未编写描述
 
** Ver.:  V1.0.0
 
*********************************************************************************/
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace HH.WMS.Entitys.Sys
{
    public class SysConfigParamEntity:BaseEntity
    {
        public string WMS_API { get; set; }
        public string APP_CODE { get; set; }
        public string APP_NAME { get; set; }
        public string DB_TYPE { get; set; }
        public string DB_URL { get; set; }
        public string AUTOBOM { get; set; }
        public string REDIS { get; set; }
        public string REDIS_DB { get; set; }
        public string MIP { get; set; }
        public string MPORT { get; set; }
        public string MDB { get; set; }
        public string MUSER { get; set; }
        public string MPWD { get; set; }
 
        public string UI_ROOT_PATH { get; set; }
 
        public string KdEID { get; set; }
        public string KdEAppKey { get; set; }
        public string KdEReqURL { get; set; }
        public string PdaServerVersion { get; set; }
        public string PdalastForce { get; set; }
        public string PdaTitle { get; set; }
        public string PdaUpdateUrl { get; set; }
        public string OMS_API { get; set; }
        
        public string AMS_API { get; set; }
 
        public string PROJECT_CODE { get; set; }
    }
}