Add PatientList auto delete.

This commit is contained in:
sunwen
2023-09-08 15:55:16 +08:00
parent 17a4288f0c
commit 0634b1b68e
5 changed files with 19 additions and 2 deletions

View File

@@ -554,3 +554,8 @@ int JsonObject::getOperationLogExpireDays()
{
return QString(getJsonString("operatorlog", "expire")).toInt();
}
int JsonObject::getPatientListExpireDays()
{
return QString(getJsonString("patientlist", "expire")).toInt();
}

View File

@@ -111,6 +111,7 @@ public:
QStringList getScreenSaverInfomation();
int getOperationLogExpireDays();
int getPatientListExpireDays();
private: