Nut/test/common/score.h

25 lines
452 B
C
Raw Normal View History

2018-01-14 22:03:24 +08:00
#ifndef SCORE_H
#define SCORE_H
#include "table.h"
class User;
class Post;
class Score : public Nut::Table
{
Q_OBJECT
NUT_PRIMARY_AUTO_INCREMENT(id)
NUT_DECLARE_FIELD(int, id, id, setId)
NUT_DECLARE_FIELD(int, score, score, setScore)
NUT_FOREGION_KEY(Post, int, post, post, setPost)
NUT_FOREGION_KEY(User, QUuid, author, author, setAuthor)
2018-01-14 22:03:24 +08:00
public:
Q_INVOKABLE Score(QObject *parent = Q_NULLPTR);
};
#endif // SCORE_H