| | package com.ntlab.irisserver.entities; |
---|
| | |
---|
| | import com.fasterxml.jackson.annotation.JsonProperty; |
---|
| | |
---|
| | public class Turn { |
---|
| | |
---|
| | @JsonProperty("hint") |
---|
| | private String hint; |
---|
| | |
---|
| | @JsonProperty("team") |
---|
| | private String team; |
---|
| | |
---|
| | @JsonProperty("max") |
---|
| | private Integer max; |
---|
| | |
---|
| | //コンストラクタ |
---|
| | |
---|
| | //--------------------------------------------------------- |
---|
| | //セッター |
---|
| | |
---|
| | public void setHint(String hint) {this.hint = hint;} |
---|
| | |
---|
| | public void setTeam(String team) {this.team = team;} |
---|
| | |
---|
| | public void setMax(Integer max) {this.max = max;} |
---|
| | |
---|
| | //--------------------------------------------------------- |
---|
| | //ゲッター |
---|
| | |
---|
| | public String getHint() {return this.hint;} |
---|
| | |
---|
| | public String getTeam() {return this.team;} |
---|
| | |
---|
| | public Integer getMax() {return this.max;} |
---|
| | |
---|
| | |
---|
| | } |
---|
| | |
---|
| | |