using SqlSugar; namespace dy.net.model.entity { /// /// /// [SqlSugar.SugarTable("dy_videoup")] public class DouyinVideoUp { /// /// /// [SugarColumn(IsPrimaryKey = true)] public string Id { get; set; } [SugarColumn(IsNullable = false, Length = 100)] public string UperId { get; set; } public string SavePath { get; set; } } }