using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WMS.Info.Info
{
public class SysSetInfo
{
///
/// 是否日志记录执行SQL语句
///
[PropertyDescription("是否日志记录执行SQL语句", "是否日志记录执行SQL语句")]
public bool IsLogSql { get; set; } = true;
///
/// 是否同一用户名同时登录在于1个的APP类型
///
[PropertyDescription("是否同一用户名同时登录在于1个的APP类型", "是否同一用户名同时登录在于1个的APP类型")]
public bool IsOnlyLogin { get; set; } = false;
///
/// 在线登录超时时间(单位:分钟)
///
[PropertyDescription("在线登录超时时间(单位:分钟)", "在线登录超时时间(单位:分钟)")]
public int OnLoginTimeOutM { get; set; } = 30;
///
/// 密码错误次数后锁定
///
[PropertyDescription("密码错误次数后锁定", "密码错误次数后锁定")]
public int UserPwdErrQty { get; set; } = 5;
///
/// 密码过期时间(天)
///
[PropertyDescription("密码过期时间(天)", "密码过期时间(天)")]
public int UserPwdExpD { get; set; } = 90;
///
/// 是否压缩JS,CSS
///
[PropertyDescription("是否压缩JS,CSS", "是否压缩JS,CSS")]
public bool IsJsCssCompressor { get; set; } = false;
///
/// 登录头像
///
[PropertyDescription("登录头像", "登录头像")]
public string FileHeadImg { get; set; } = "C:/wms/FileHeadImg";
///
/// 上传文件路径
///
[PropertyDescription("上传文件路径", "上传文件路径")]
public string AnnexesFile { get; set; } = "C:/wms/fileAnnexes";
///
/// 是否启用Session
///
[PropertyDescription("是否启用Session", "是否启用Session")]
public bool IsSession { get; set; } = false;
///
/// 用户初始密码
///
[PropertyDescription("用户初始密码", "用户初始密码")]
public string PwdInit { get; set; } = "000000";
///
/// wms标题
///
[PropertyDescription("wms标题", "wms标题")]
public string WMSTile { get; set; } = "中天智能仓储管理系统";
///
/// wms版本
///
[PropertyDescription("wms版本", "wms版本")]
public string WMSVersion { get; set; } = "v3.2.9";
///
/// 报警统计时间单位设定
///
[PropertyDescription("yyyy-mm-dd", "报警统计时间单位设定")]
public string AlaramCount_Param01 { get; set; } = "yyyy-mm-dd";
///
/// 报警统计查询记录数设定
///
[PropertyDescription("前10条数据", "报警统计查询记录数设定")]
public int AlaramCount_Param02 { get; set; } = 10;
///
/// 库龄统计日期天数设定(饼图)
///
[PropertyDescription("0-7天", "库龄统计日期天数设定(饼图)")]
public int DullMatterialCount_Param01 { get; set; } = 7;
///
/// 库龄统计日期天数设定(饼图)
///
[PropertyDescription("8-15天", "库龄统计日期天数设定(饼图)")]
public int DullMatterialCount_Param02 { get; set; } = 7;
///
/// 库龄统计日期天数设定(饼图)
///
[PropertyDescription("16-30天", "库龄统计日期天数设定(饼图)")]
public int DullMatterialCount_Param03 { get; set; } = 15;
///
/// 库龄统计日期天数设定(饼图)
///
[PropertyDescription("31天以上", "库龄统计日期天数设定(饼图)")]
public int DullMatterialCount_Param04 { get; set; } = 30;
///
/// 库龄统计日期天数设定
///
[PropertyDescription("一个星期以上", "库龄统计日期天数设定")]
public int LibraryAgeCount_Param01 { get; set; } = 7;
///
/// 库龄统计日期天数设定
///
[PropertyDescription("半个月以上", "库龄统计日期天数设定")]
public int LibraryAgeCount_Param02 { get; set; } = 15;
///
/// 库龄统计日期天数设定
///
[PropertyDescription("一个月以上", "库龄统计日期天数设定")]
public int LibraryAgeCount_Param03 { get; set; } = 30;
///
/// 库龄统计记录数设定
///
[PropertyDescription("前10条数据", "库龄统计记录数设定")]
public int LibraryAgeCount_Param04 { get; set; } = 10;
///
/// 登陆超时设定(单位分钟)
///
[PropertyDescription("登录超时", "登陆超时设定(单位分钟)")]
public int LoginTimeOutMi { get; set; } = 30;
///
/// 输入密码错误次数设定
///
[PropertyDescription("输入密码错误次数", "输入密码错误次数设定")]
public int PWDERRCOUNT { get; set; } = 3;
///
/// 密码过期时间设定(单位天)
///
[PropertyDescription("密码过期时间", "密码过期时间设定(单位天)")]
public int PwdEXPDay { get; set; } = 30;
///
/// RGV运行模式设定(1.出库模式;2.入库模式;3.盘点模式;4.正常模式;)
///
[PropertyDescription("RGV运行模式", "RGV运行模式设定(1.出库模式;2.入库模式;3.盘点模式;4.正常模式;)")]
public int Rgv02_Mode { get; set; } = 4;
///
/// 出入库物料统计时间单位设定
///
[PropertyDescription("day", "出入库物料统计时间单位设定")]
public string StockOutInCount_Param01 { get; set; } = "day";
///
/// 出入库物料统计记录数设定
///
[PropertyDescription("前13条数据", "出入库物料统计记录数设定")]
public int StockOutInCount_Param02 { get; set; } = 13;
///
/// 库存周转率统计时间单位设定
///
[PropertyDescription("month", "库存周转率统计时间单位设定")]
public string StockTurnOverRate_Param01 { get; set; } = "month";
///
/// 库存周转率统计记录数设定
///
[PropertyDescription("前12条数据", "库存周转率统计记录数设定")]
public int StockTurnOverRate_Param02 { get; set; } = 12;
///
/// 货位统计类型设定(0.所有仓库;1.立库;2.平库;3.离线仓库)
///
[PropertyDescription("F_STATENUM", "货位统计类型设定(0.所有仓库;1.立库;2.平库;3.离线仓库)")]
public int WARECELLCOUNT_Param01 { get; set; } = 1;
///
/// 默认仓库
///
[PropertyDescription("warehouse", "默认立库")]
public string DefaultWarehouseNo { get; set; } = "JS";
///
/// 飞旭webservice地址http://afgqadtest19.europe.lan:53979/qxi/services/QdocWebService?wsdl
///
[PropertyDescription("FxWebServiceUrl", "webserviceUrl")]
public string FxWebServiceUrl { get; set; }
///
/// wcs调用地址
///
[PropertyDescription("WCSApiUrl", "wcs调用地址")]
public string WCSApiUrl { get; set; }
///
/// 托盘组编码
///
[PropertyDescription("托盘组编码", "EmptyTrayGroup")]
public string DefaultEmptyTrayGroupNo { get; set; } = "EmptyTrayGroup";
///
/// 托盘组名称
///
[PropertyDescription("DefaultEmptyTrayGroupName", "托盘组名称")]
public string DefaultEmptyTrayGroupName { get; set; } = "空托盘组";
///
/// webService用户名
///
[PropertyDescription("WebServiceUserName", "用户名")]
public string WebServiceUserName { get; set; } = "H3C-EDI";
///
/// webServiceUserName
///
[PropertyDescription("WebServicePassword", "密码")]
public string WebServicePassword { get; set; } = "H3C-EDI";
}
}