You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
54 lines
1.6 KiB
C#
54 lines
1.6 KiB
C#
3 years ago
|
using FreeSql.DatabaseModel;using System;
|
||
|
using System.Collections;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Linq;
|
||
|
using System.Reflection;
|
||
|
using System.Threading.Tasks;
|
||
|
using Newtonsoft.Json;
|
||
|
using FreeSql.DataAnnotations;
|
||
|
|
||
|
namespace djy.Model {
|
||
|
|
||
|
[JsonObject(MemberSerialization.OptIn), Table(DisableSyncStructure = true)]
|
||
|
public partial class Attachment {
|
||
|
|
||
|
[JsonProperty, Column(Name = "id", IsPrimary = true, IsIdentity = true)]
|
||
|
public int Id { get; set; }
|
||
|
|
||
|
[JsonProperty, Column(Name = "attachmentClass")]
|
||
|
public int? AttachmentClass { get; set; }
|
||
|
|
||
|
[JsonProperty, Column(Name = "attachmentID", DbType = "varchar(40)")]
|
||
|
public string AttachmentID { get; set; }
|
||
|
|
||
|
[JsonProperty, Column(Name = "feedbackID", DbType = "varchar(40)")]
|
||
|
public string FeedbackID { get; set; }
|
||
|
|
||
|
[JsonProperty, Column(Name = "fileName", DbType = "varchar(100)")]
|
||
|
public string FileName { get; set; }
|
||
|
|
||
|
[JsonProperty, Column(Name = "fileType", DbType = "varchar(10)")]
|
||
|
public string FileType { get; set; }
|
||
|
|
||
|
[JsonProperty, Column(Name = "height")]
|
||
|
public int? Height { get; set; }
|
||
|
|
||
|
[JsonProperty, Column(Name = "location", DbType = "varchar(500)")]
|
||
|
public string Location { get; set; }
|
||
|
|
||
|
[JsonProperty, Column(Name = "parentID", DbType = "varchar(40)")]
|
||
|
public string ParentID { get; set; }
|
||
|
|
||
|
[JsonProperty, Column(Name = "thumbnailName", DbType = "varchar(100)")]
|
||
|
public string ThumbnailName { get; set; }
|
||
|
|
||
|
[JsonProperty, Column(Name = "thumbnailType", DbType = "varchar(10)")]
|
||
|
public string ThumbnailType { get; set; }
|
||
|
|
||
|
[JsonProperty, Column(Name = "width")]
|
||
|
public int? Width { get; set; }
|
||
|
|
||
|
}
|
||
|
|
||
|
}
|