Files
shgx_tz_mes_backend_sync/ZR.Admin.WebApi/wwwroot/CodeGenTemplate/ModelTemplate.txt

15 lines
274 B
Plaintext
Raw Normal View History

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