2025-04-18 11:01:56 +08:00
|
|
|
|
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; }
|
2025-09-22 13:43:41 +08:00
|
|
|
|
//调拨入库时的in_Pharmacy_Id字段值与storage不一致不确定是传错了还是就两个值先加上这个配置
|
|
|
|
|
|
public string inPharmacyId { get; set; }
|
2025-04-18 11:01:56 +08:00
|
|
|
|
public int loginMode { get; set; }
|
|
|
|
|
|
public bool opFirst { get; set; }
|
|
|
|
|
|
//自动退出登录时间,单位秒(0不自动退出)
|
|
|
|
|
|
public int autoOutLog { get; set; }
|
2025-10-29 16:06:32 +08:00
|
|
|
|
//自动退出登录倒计时时间(0不倒计时)
|
|
|
|
|
|
public int warningMessage { get; set; }
|
2025-06-24 08:55:34 +08:00
|
|
|
|
//手术室药盒的设备id
|
|
|
|
|
|
public string boxMachineId { get; set; }
|
2025-09-04 15:19:32 +08:00
|
|
|
|
//手术室名称
|
|
|
|
|
|
public string roomName { get; set; }
|
2025-09-22 13:43:41 +08:00
|
|
|
|
//麻醉医师姓名
|
|
|
|
|
|
public string anaesthetist_name { get; set; }
|
|
|
|
|
|
public string boxColor { get; set; }
|
2025-10-16 09:14:04 +08:00
|
|
|
|
//报警
|
|
|
|
|
|
public int alert { get; set; }
|
2025-04-18 11:01:56 +08:00
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|