😎忽略上传文件时上传用户Id赋值(只供服务端内部调用)
This commit is contained in:
parent
7e1caf6902
commit
e30876e565
@ -75,6 +75,8 @@ public class UploadFileInput
|
||||
/// <summary>
|
||||
/// 上传用户Id(解决跨租户上传时用户所属不一致问题)
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonIgnore]
|
||||
[System.Text.Json.Serialization.JsonIgnore]
|
||||
public long UserId { get; set; }
|
||||
}
|
||||
|
||||
@ -124,5 +126,7 @@ public class UploadFileFromBase64Input
|
||||
/// <summary>
|
||||
/// 上传用户Id(解决跨租户上传时用户所属不一致问题)
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonIgnore]
|
||||
[System.Text.Json.Serialization.JsonIgnore]
|
||||
public long UserId { get; set; }
|
||||
}
|
||||
Loading…
Reference in New Issue
Block a user