fix: 修复附件上传响应处理逻辑
修改UploadAttachmentResponse的code字段类型为string以匹配实际接口返回 添加异常处理逻辑,增强附件上传失败时的错误处理和信息记录
This commit is contained in:
@@ -48,7 +48,7 @@ namespace YLErp.Modules.TradeModule
|
||||
/// </summary>
|
||||
public class UploadAttachmentResponse
|
||||
{
|
||||
public int code { get; set; }
|
||||
public string code { get; set; }
|
||||
public List<UploadAttachmentData> data { get; set; }
|
||||
public string status { get; set; }
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user