Newer
Older
AppendIrisCodeUtils / dao / SysDeptDao.h
TAN YUE on 14 Dec 2023 434 bytes 20231214 选择文件进行特征值编码
#ifndef SYSDEPTDAO_H
#define SYSDEPTDAO_H

#include <QObject>
#include "BaseDao.h"

class SysDeptDao : public BaseDao
{
    Q_OBJECT
public:
    explicit SysDeptDao(QObject *parent = nullptr);

    QVector<QVariantMap> findAllRecord();
    QVariantMap findRecordById(QString id);

    QString save(QVariantMap object);
    bool edit(QVariantMap newObject, QString id);
    bool dele(QString id);

private:

};

#endif // SYSDEPTDAO_H