39 lines
750 B
C#
39 lines
750 B
C#
using System;
|
|
namespace Hg.Core.Entity
|
|
{
|
|
[Table("t_meeting_accessory")]
|
|
public class MeetingAccessory
|
|
{
|
|
public MeetingAccessory()
|
|
{
|
|
}
|
|
|
|
[Key]
|
|
public int Id { get; set; }
|
|
|
|
[Column("meeting_id")]
|
|
public int MeetingId { get; set; }
|
|
|
|
[Column("file_name")]
|
|
public string? FileName { get; set; }
|
|
|
|
[Column("file_url")]
|
|
public string? FileUrl { get; set; }
|
|
|
|
[Column("file_size")]
|
|
public string? FileSize { get; set; }
|
|
|
|
[Column("uploader")]
|
|
public string? Uploader { get; set; }
|
|
|
|
[Column("upload_eid")]
|
|
public int UploadEid { get; set; }
|
|
|
|
[Column("upload_time")]
|
|
public DateTime UploadTime { get; set; }
|
|
|
|
public virtual Meeting? Meeting { get; set; }
|
|
}
|
|
}
|
|
|