1234567891011121314151617181920 |
- using System;
- using System.Collections.Generic;
- namespace MySystem.JavaModels
- {
- public partial class SysFile
- {
- public long Id { get; set; }
- public string FileName { get; set; }
- public string BucketName { get; set; }
- public string Original { get; set; }
- public string Type { get; set; }
- public long? FileSize { get; set; }
- public string CreateBy { get; set; }
- public string UpdateBy { get; set; }
- public DateTime? CreateTime { get; set; }
- public DateTime? UpdateTime { get; set; }
- public string DelFlag { get; set; }
- }
- }
|