Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Plan.java #79

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions src/main/java/org/casbin/casdoor/entity/Plan.java
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,9 @@ public class Plan {
public String createdTime;
public String displayName;
public String description;
public double pricePerMonth;
public double pricePerYear;
public double price;
public String month;
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Where is month and year?

public String year;
public String currency;
public boolean isEnabled;
public String role;
Expand All @@ -39,4 +40,4 @@ public Plan(String owner, String name, String createdTime, String displayName, S

public Plan() {
}
}
}
Loading