package com.yeshi.fanli.vo.user;
|
|
public class UserDialogVO {
|
private String id;
|
private boolean close;
|
private String title;
|
private String content;
|
private UserDialogBtnVO positive;
|
private UserDialogBtnVO negative;
|
|
public UserDialogVO(String id, boolean close, String title, String content, UserDialogBtnVO positive,
|
UserDialogBtnVO negative) {
|
super();
|
this.id = id;
|
this.close = close;
|
this.title = title;
|
this.content = content;
|
this.positive = positive;
|
this.negative = negative;
|
}
|
|
public String getId() {
|
return id;
|
}
|
|
public void setId(String id) {
|
this.id = id;
|
}
|
|
public boolean isClose() {
|
return close;
|
}
|
|
public void setClose(boolean close) {
|
this.close = close;
|
}
|
|
public String getTitle() {
|
return title;
|
}
|
|
public void setTitle(String title) {
|
this.title = title;
|
}
|
|
public String getContent() {
|
return content;
|
}
|
|
public void setContent(String content) {
|
this.content = content;
|
}
|
|
public UserDialogBtnVO getPositive() {
|
return positive;
|
}
|
|
public void setPositive(UserDialogBtnVO positive) {
|
this.positive = positive;
|
}
|
|
public UserDialogBtnVO getNegative() {
|
return negative;
|
}
|
|
public void setNegative(UserDialogBtnVO negative) {
|
this.negative = negative;
|
}
|
}
|