Commit 9d7e73a2 by 田超

Merge branch 'fixbug/fixthirdtemplet' into 'master'

bug: [none] fixthirdTemplet

See merge request rays/pcloud-book!1151
parents 751be2c8 52fcc16d
......@@ -47,6 +47,15 @@ public class BookAppeal extends BaseEntity{
private Long secondTempletId;
/**
* 三级分类id
*/
private Long thirdTempletId;
/**
* 三级分类名称
*/
private String thirdTempletName;
/**
* 申诉理由
*/
private String reason;
......@@ -115,7 +124,24 @@ public class BookAppeal extends BaseEntity{
* 新增类型
*/
private Integer addType;
public Long getThirdTempletId() {
return thirdTempletId;
}
public void setThirdTempletId(Long thirdTempletId) {
this.thirdTempletId = thirdTempletId;
}
public String getThirdTempletName() {
return thirdTempletName;
}
public void setThirdTempletName(String thirdTempletName) {
this.thirdTempletName = thirdTempletName;
}
public Long getBookAppealId() {
return bookAppealId;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment