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; } //自动退出登录倒计时时间(0不倒计时) public int warningMessage { 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; } } }