UploadEntity.fromJson constructor

UploadEntity.fromJson(
  1. dynamic json
)

Implementation

UploadEntity.fromJson(dynamic json) {
  id = json['id'];
  createBy = json['createBy'];
  createTime = json['createTime'];
  updateTime = json['updateTime'];
  updateBy = json['updateBy'];
  deletedFlag = json['deletedFlag'];
  bucketName = json['bucketName'];
  file = json['file'];
  files = json['files'];
  tenantId = json['tenantId'];
  busiId = json['busiId'];
  busiType = json['busiType'];
  fileName = json['fileName'];
  fileExt = json['fileExt'];
  filePath = json['filePath'];
  fileUrl = json['fileUrl'];
  fileSize = json['fileSize'];
  remark = json['remark'];
}