12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- namespace EVCB_OCPP.Domain.Models.Database
- {
- using System;
- using System.Collections.Generic;
- using System.ComponentModel.DataAnnotations;
- using System.ComponentModel.DataAnnotations.Schema;
-
-
-
- [Table("UploadFile")]
- public partial class UploadFile
- {
- public UploadFile()
- {
- Id = Guid.NewGuid();
- }
-
- [Key]
- public Guid Id { get; set; }
-
-
-
- [Required]
- [StringLength(500)]
- public string FileName { get; set; }
-
-
-
- [Required]
- [StringLength(500)]
-
- public string OriginName { get; set; }
-
- public int FileSize { get; set; }
-
-
-
- [StringLength(200)]
-
- public string FileType { get; set; }
-
-
-
- [StringLength(50)]
- public string FileExtensionName { get; set; }
-
-
-
- [Required]
- [StringLength(500)]
- public string FilePath { get; set; }
-
- public DateTime CreatedOn { get; set; }
- [StringLength(50)]
- public string CreatedBy { get; set; }
-
-
-
- public bool IsOnline { get; set; }
-
- public Guid CustomerId { get; set; }
-
-
-
-
- [StringLength(50)]
- public string FileMD5 { get; set; }
-
-
-
- [StringLength(512)]
- public string FileUrl { get; set; }
-
- }
- }
|