Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Open
Show file tree
Hide file tree
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
10 changes: 10 additions & 0 deletions src/test/java/org/jfaster/mango/crud/CrudOrderA.java
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@
*/
public class CrudOrderA {

protected int price;

@ID()
private String id;

Expand All @@ -45,6 +47,14 @@ public int getUserId() {
public void setUserId(int userId) {
this.userId = userId;
}

public int getPrice() {
return price;
}

public void setPrice(int price) {
this.price = price;
}
}


10 changes: 0 additions & 10 deletions src/test/java/org/jfaster/mango/crud/CrudOrderB.java
Original file line number Diff line number Diff line change
Expand Up @@ -26,19 +26,9 @@
*/
public class CrudOrderB extends CrudOrderA {

private int price;

@Ignore
private String stat;

public int getPrice() {
return price;
}

public void setPrice(int price) {
this.price = price;
}

public String getStat() {
return stat;
}
Expand Down