You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
using NewLife.Configuration;
|
|
|
|
|
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace Tool
|
|
|
|
|
{
|
|
|
|
|
[DisplayName("核心设置")]
|
|
|
|
|
[Config("Core")]
|
|
|
|
|
public class RfidSetting : Config<RfidSetting>
|
|
|
|
|
{
|
|
|
|
|
public string Db { get; set; } = "server=127.0.0.1;database=postgres;uid=postgres;pwd=yangwei";
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public string PlcIp { get; set; } = "127.0.0.1";
|
|
|
|
|
|
|
|
|
|
public int Port { get; set; }=44818;
|
|
|
|
|
|
|
|
|
|
public string HslKey { get; set; } = "4b133324-fea4-4766-b066-857279c92f5d";
|
|
|
|
|
}
|
|
|
|
|
}
|