You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
737 B
40 lines
737 B
using cd.dapper.extension;
|
|
|
|
namespace learun.iapplication
|
|
{
|
|
/// <summary>
|
|
/// 版 本 EasyCode EC管理后台
|
|
/// Copyright (c) 2019-present EC管理有限公司
|
|
/// 创建人:tobin
|
|
/// 日 期:2019.09.17
|
|
/// 描 述:图片保存
|
|
/// </summary>
|
|
[Table("lr_base_img")]
|
|
public class ImgEntity
|
|
{
|
|
#region 实体成员
|
|
|
|
/// <summary>
|
|
/// 主键
|
|
/// </summary>
|
|
[Key]
|
|
public string F_Id { get; set; }
|
|
|
|
/// <summary>
|
|
/// 图片名称
|
|
/// </summary>
|
|
public string F_Name { get; set; }
|
|
|
|
/// <summary>
|
|
/// 扩展名
|
|
/// </summary>
|
|
public string F_ExName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 保存的图片内容
|
|
/// </summary>
|
|
public string F_Content { get; set; }
|
|
|
|
#endregion 实体成员
|
|
}
|
|
}
|