31 lines
1014 B
C#
31 lines
1014 B
C#
using System;
|
||
using System.Collections.Generic;
|
||
using System.Linq;
|
||
using System.Text;
|
||
using System.Threading.Tasks;
|
||
|
||
namespace MasaBlazorApp3.Pojo.Config
|
||
{
|
||
public class SettingConfig
|
||
{
|
||
public string machineId { get; set; }
|
||
public string storage { get; set; }
|
||
//调拨入库时的in_Pharmacy_Id字段值与storage不一致不确定是传错了还是就两个值先加上这个配置
|
||
public string inPharmacyId { get; set; }
|
||
public int loginMode { get; set; }
|
||
public bool opFirst { get; set; }
|
||
//自动退出登录时间,单位秒(0不自动退出)
|
||
public int autoOutLog { get; set; }
|
||
//手术室药盒的设备id
|
||
public string boxMachineId { get; set; }
|
||
//手术室名称
|
||
public string roomName { get; set; }
|
||
//麻醉医师姓名
|
||
public string anaesthetist_name { get; set; }
|
||
public string boxColor { get; set; }
|
||
//报警
|
||
public int alert { get; set; }
|
||
|
||
}
|
||
}
|