|
@@ -53,52 +53,11 @@ public class FeedBack extends BaseBusinessEntity{
|
|
|
@ApiModelProperty(value = "图片IDS")
|
|
|
private String imgIds;
|
|
|
|
|
|
- public void setId(Long id){
|
|
|
- this.id = id;
|
|
|
- }
|
|
|
+ /** 终端类型 1:苹果 2:安卓 3:小程序*/
|
|
|
+ @Excel(name = "终端类型")
|
|
|
+ @TableField("device_type")
|
|
|
+ @ApiModelProperty(value = "终端类型 1:苹果 2:安卓 3:小程序")
|
|
|
+ private Integer deviceType;
|
|
|
|
|
|
- public Long getId(){
|
|
|
- return id;
|
|
|
- }
|
|
|
- public void setType(Long type){
|
|
|
- this.type = type;
|
|
|
- }
|
|
|
|
|
|
- public Long getType(){
|
|
|
- return type;
|
|
|
- }
|
|
|
- public void setContent(String content){
|
|
|
- this.content = content;
|
|
|
- }
|
|
|
-
|
|
|
- public String getContent(){
|
|
|
- return content;
|
|
|
- }
|
|
|
- public void setPhone(String phone){
|
|
|
- this.phone = phone;
|
|
|
- }
|
|
|
-
|
|
|
- public String getPhone(){
|
|
|
- return phone;
|
|
|
- }
|
|
|
- public void setImgIds(String imgIds){
|
|
|
- this.imgIds = imgIds;
|
|
|
- }
|
|
|
-
|
|
|
- public String getImgIds(){
|
|
|
- return imgIds;
|
|
|
- }
|
|
|
-
|
|
|
- @Override
|
|
|
- public String toString() {
|
|
|
- return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
|
|
- .append("id", getId())
|
|
|
- .append("type", getType())
|
|
|
- .append("content", getContent())
|
|
|
- .append("phone", getPhone())
|
|
|
- .append("imgIds", getImgIds())
|
|
|
- .append("createTime", getCreateTime())
|
|
|
- .append("updateTime", getUpdateTime())
|
|
|
- .toString();
|
|
|
- }
|
|
|
}
|