12345678910111213141516171819202122232425262728293031323334 |
- package com.gyee.runeconomy.dto;
- public class ProjectplanVo {
- private Double jhdl;
- private Double sjdl;
- private Integer hours;
- public Double getJhdl() {
- return jhdl;
- }
- public void setJhdl(Double jhdl) {
- this.jhdl = jhdl;
- }
- public Double getSjdl() {
- return sjdl;
- }
- public void setSjdl(Double sjdl) {
- this.sjdl = sjdl;
- }
- public Integer getHours() {
- return hours;
- }
- public void setHours(Integer hours) {
- this.hours = hours;
- }
- }
|