|
|
@@ -29,16 +29,16 @@ public class User implements Serializable {
|
|
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
|
|
- @ApiModelProperty(value = "组织id(user.org.org_id)")
|
|
|
- @TableField("org_id")
|
|
|
- @JsonFormat(shape = JsonFormat.Shape.STRING)
|
|
|
- private Long orgId;
|
|
|
-
|
|
|
@ApiModelProperty(value = "用户id(调用API生成)")
|
|
|
@TableId(value = "user_id", type = IdType.INPUT)
|
|
|
@JsonFormat(shape = JsonFormat.Shape.STRING)
|
|
|
private Long userId;
|
|
|
|
|
|
+ @ApiModelProperty(value = "组织id(user.org.org_id)")
|
|
|
+ @TableField("org_id")
|
|
|
+ @JsonFormat(shape = JsonFormat.Shape.STRING)
|
|
|
+ private Long orgId;
|
|
|
+
|
|
|
@ApiModelProperty(value = "登录用户")
|
|
|
@TableField("user_code")
|
|
|
private String userCode;
|