Commit c85eb691 authored by nie'hong's avatar nie'hong

修改Integer为int

parent b5604af9
...@@ -26,25 +26,25 @@ public class MonthlyWorkingHoursStatistics implements Serializable { ...@@ -26,25 +26,25 @@ public class MonthlyWorkingHoursStatistics implements Serializable {
* 填报次数 * 填报次数
*/ */
@ApiModelProperty(name = "count", value = "填报次数") @ApiModelProperty(name = "count", value = "填报次数")
private Integer count; private int count;
/** /**
* 填报工时 * 填报工时
*/ */
@ApiModelProperty(name = "workTime", value = "填报工时") @ApiModelProperty(name = "workTime", value = "填报工时")
private Integer workTime; private int workTime;
/** /**
* 未填报天数 * 未填报天数
*/ */
@ApiModelProperty(name = "notFilledCount", value = "未填报天数") @ApiModelProperty(name = "notFilledCount", value = "未填报天数")
private Integer notFilledCount; private int notFilledCount;
/** /**
* 现存被驳回数 * 现存被驳回数
*/ */
@ApiModelProperty(name = "rejectCount", value = "现存被驳回数") @ApiModelProperty(name = "rejectCount", value = "现存被驳回数")
private Integer rejectCount; private int rejectCount;
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment