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