mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-04-05 17:37:58 +08:00
17 lines
375 B
C#
17 lines
375 B
C#
|
|
using SqlSugar;
|
|
|
|
|
|
/// <summary>
|
|
/// 文件字段
|
|
/// </summary>
|
|
[SugarTable("WebX_Dev_Form_Upload", "文件字段")]
|
|
public class SysFormUpload : BaseModel
|
|
{
|
|
public long FormId { get; set; }
|
|
public long Form_Field_Id { get; set; }
|
|
public long UploadMode { get; set; }
|
|
public bool IsWaterMark { get; set; }
|
|
public string FileExts { get; set; } = "";
|
|
}
|