19 lines
338 B
Plaintext
Raw Normal View History

2021-09-07 18:37:21 +08:00
using System;
using System.Collections.Generic;
using SqlSugar;
2021-09-07 18:37:21 +08:00
2021-09-10 18:06:07 +08:00
namespace {ModelsNamespace}.Models
2021-09-07 18:37:21 +08:00
{
/// <summary>
/// {FunctionName},数据实体对象
///
/// @author {Author}
/// @date {DateTime}
2021-09-07 18:37:21 +08:00
/// </summary>
[SugarTable("{TableName}")]
2021-09-07 18:37:21 +08:00
public class {ModelTypeName}
{
2021-09-08 07:48:18 +08:00
{PropertyName}
2021-09-07 18:37:21 +08:00
}
}