26 lines
472 B
C#
26 lines
472 B
C#
using SqlSugar;
|
|
|
|
namespace dy.net.model.entity
|
|
{
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
|
|
[SqlSugar.SugarTable("dy_videoup")]
|
|
public class DouyinVideoUp
|
|
{
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
[SugarColumn(IsPrimaryKey = true)]
|
|
public string Id { get; set; }
|
|
|
|
|
|
[SugarColumn(IsNullable = false, Length = 100)]
|
|
public string UperId { get; set; }
|
|
|
|
|
|
public string SavePath { get; set; }
|
|
}
|
|
}
|