123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace LYFZ.WanYuKeFuData.Model
- {
- public class APPConfig
- {
- public APPConfig() {
- }
- long _ID;
- public long ID
- {
- get { return _ID; }
- set { _ID = value; }
- }
- string _LYFZAPPName = "";
- public string LYFZAPPName
- {
- get { return _LYFZAPPName; }
- set { _LYFZAPPName = value; }
- }
- string _HostUrl = "";
- public string HostUrl
- {
- get { return _HostUrl; }
- set { _HostUrl = value; }
- }
- string _LYFZAPPID = "";
- public string LYFZAPPID
- {
- get { return _LYFZAPPID; }
- set { _LYFZAPPID = value; }
- }
- string _LYFZAPPKEY = "";
- public string LYFZAPPKEY
- {
- get { return _LYFZAPPKEY; }
- set { _LYFZAPPKEY = value; }
- }
- int _APPType = 0;
- /// <summary>
- /// APP配置类型 0 为"生产环境" 1 为 "开发环境"
- /// </summary>
- public int APPType
- {
- get { return _APPType; }
- set { _APPType = value; }
- }
- string _GTAppID = "";
- /// <summary>
- /// GTAppID
- /// </summary>
- public string GTAppID
- {
- get { return _GTAppID; }
- set { _GTAppID = value; }
- }
- string _GTAppSecret = "";
- /// <summary>
- /// GTAppSecret
- /// </summary>
- public string GTAppSecret
- {
- get { return _GTAppSecret; }
- set { _GTAppSecret = value; }
- }
- string _GTAppKey = "";
- /// <summary>
- /// GTAppKey
- /// </summary>
- public string GTAppKey
- {
- get { return _GTAppKey; }
- set { _GTAppKey = value; }
- }
- string _GTMasterSecret = "";
- /// <summary>
- /// GTMasterSecret
- /// </summary>
- public string GTMasterSecret
- {
- get { return _GTMasterSecret; }
- set { _GTMasterSecret = value; }
- }
- int _APPState = 1;
- /// <summary>
- /// APP状态 0 禁用 1 启用
- /// </summary>
- public int APPState
- {
- get { return _APPState; }
- set { _APPState = value; }
- }
- long _CreationTime = 0;
- /// <summary>
- /// 创建时间
- /// </summary>
- public long CreationTime
- {
- get { return _CreationTime; }
- set { _CreationTime = value; }
- }
- long _UpdateTime = 0;
- /// <summary>
- /// 更新时间
- /// </summary>
- public long UpdateTime
- {
- get { return _UpdateTime; }
- set { _UpdateTime = value; }
- }
-
-
- }
- }
|