|
|
@@ -23,7 +23,7 @@ public class QuestionRequestBean extends RequestBean {
|
|
|
private transient String[] categories = new String[]{"회원", "쿠폰", "혜택", "기타"};
|
|
|
|
|
|
@SerializedName("qaType")
|
|
|
- private String category = "0";
|
|
|
+ private String category = "1";
|
|
|
@SerializedName("qaCten") // 질문 내용
|
|
|
private String contents = "";
|
|
|
@SerializedName("qaRem")
|
|
|
@@ -34,7 +34,7 @@ public class QuestionRequestBean extends RequestBean {
|
|
|
}
|
|
|
|
|
|
public void setCategory(int category) {
|
|
|
- this.category = String.valueOf(category);
|
|
|
+ this.category = String.valueOf(category + 1);
|
|
|
}
|
|
|
|
|
|
public String getContents() {
|