feature/danh-dev-new-branch-yeu-cau-viet-anh (#14)
Release package / release (push) Successful in 10m45s

Co-authored-by: TakahashiNg <83152264+TakahashiNguyen@users.noreply.github.com>
Co-authored-by: TranHuuDanh <tranhuudanh@demonkernel.io.vn>
Co-authored-by: TakahashiNguyen <takahashi.ng@icloud.com>
Reviewed-on: #14
Reviewed-by: TakahashiNguyen <takahashi.ng@icloud.com>
Co-authored-by: TranHuuDanh <tranhuudanh@noreply.localhost>
Co-committed-by: TranHuuDanh <tranhuudanh@noreply.localhost>
This commit was merged in pull request #14.
This commit is contained in:
2026-04-01 08:20:41 +00:00
committed by TakahashiNguyen
parent bcbda39ed4
commit 5a7b70145c
14 changed files with 448 additions and 133 deletions
@@ -13,13 +13,13 @@ public class ReviewModel extends BaseEntity {
@Column
public String comment;
public ReviewModel() {}
public ReviewModel(int rating, String comment) {
this.rating = rating;
this.comment = comment;
}
public ReviewModel() {}
public ReviewModel(ReviewModel input) {
this(input.rating, input.comment);
}