QueryAttachDto.cs 228 B

123456789
  1. namespace WePlatform.BaseSystem.AttachFile.Dto
  2. {
  3. public class QueryAttachDto
  4. {
  5. public string TableName { get; set; }
  6. public string ColName { get; set; }
  7. public string Key { get; set; }
  8. }
  9. }