Commit 8bdbf0a2 authored by KeYong's avatar KeYong

修改baseservice隐藏的boolean存储bug

parent c4875057
...@@ -49,4 +49,11 @@ public class OrganizationUser extends BaseEntity { ...@@ -49,4 +49,11 @@ public class OrganizationUser extends BaseEntity {
@ApiModelProperty(value = "是否是值长") @ApiModelProperty(value = "是否是值长")
private boolean dutyLeader; private boolean dutyLeader;
public void setDutyLeader(boolean dutyLeader) {
this.dutyLeader = dutyLeader;
}
public boolean getDutyLeader() {
return dutyLeader;
}
} }
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