|
@@ -6,6 +6,8 @@ import java.util.Objects;
|
|
|
|
|
|
public class BasicUserDto {
|
|
public class BasicUserDto {
|
|
|
|
|
|
|
|
+ private Integer organId;
|
|
|
|
+
|
|
private Integer userId;
|
|
private Integer userId;
|
|
|
|
|
|
private String name;
|
|
private String name;
|
|
@@ -32,6 +34,14 @@ public class BasicUserDto {
|
|
@ApiModelProperty(value = "加油包:0:默认不可用;1:可用;2:已使用;")
|
|
@ApiModelProperty(value = "加油包:0:默认不可用;1:可用;2:已使用;")
|
|
private Integer comeOnPackage;
|
|
private Integer comeOnPackage;
|
|
|
|
|
|
|
|
+ public Integer getOrganId() {
|
|
|
|
+ return organId;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setOrganId(Integer organId) {
|
|
|
|
+ this.organId = organId;
|
|
|
|
+ }
|
|
|
|
+
|
|
public Integer getCarePackage() {
|
|
public Integer getCarePackage() {
|
|
return carePackage;
|
|
return carePackage;
|
|
}
|
|
}
|