123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101 |
- 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().ToString();
- }
-
- [StringLength(36)]
- public string 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; }
-
-
-
-
- [StringLength(50)]
- public string FileMD5 { get; set; }
-
-
-
- [StringLength(512)]
- public string FileUrl { get; set; }
-
-
-
- [StringLength(50)]
- [Required]
- public string VendorId { get; set; }
-
-
-
- [StringLength(50)]
- [Required]
- public string ModelName { get; set; }
-
-
-
- [Required]
- public int ModuleId { get; set; }
- }
- }
|