| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- package restcontroller.webmanage.sale.databoard;
- import java.math.BigDecimal;
- public class DataTrans {
- private String name;
- private String type;
- private String year;
- private String month;
- private String day;
- private BigDecimal value;
- public String getName() {
- return name;
- }
- public void setName(String name) {
- this.name = name;
- }
- public String getYear() {
- return year;
- }
- public void setYear(String year) {
- this.year = year;
- }
- public String getMonth() {
- return month;
- }
- public void setMonth(String month) {
- this.month = month;
- }
- public BigDecimal getValue() {
- return value;
- }
- public void setValue(BigDecimal value) {
- this.value = value;
- }
- public String getType() {
- return type;
- }
- public void setType(String type) {
- this.type = type;
- }
- public String getDay() {
- return day;
- }
- public void setDay(String day) {
- this.day = day;
- }
- @Override
- public String toString() {
- return "DataTrans{" +
- "name='" + name + '\'' +
- ", type='" + type + '\'' +
- ", year='" + year + '\'' +
- ", month='" + month + '\'' +
- ", day='" + day + '\'' +
- ", value=" + value +
- '}';
- }
- }
|