49755ef0
李曜臣
6-12代码优化
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
using SqlSugar;
namespace FoodLabeling.Application.Services.DbModels;
/// <summary>
/// 标签适用 Region 关联(对应表:fl_label_region,<c>GroupId</c> 为 <c>fl_group.Id</c>)
/// </summary>
[SugarTable("fl_label_region")]
public class FlLabelRegionDbEntity
{
[SugarColumn(IsPrimaryKey = true)]
public string Id { get; set; } = string.Empty;
public string LabelId { get; set; } = string.Empty;
public string GroupId { get; set; } = string.Empty;
public DateTime CreationTime { get; set; }
public string? CreatorId { get; set; }
}
|