mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-03 00:00:58 +08:00
15 lines
308 B
C#
15 lines
308 B
C#
using Yi.Framework.CodeGen.Domain.Entities;
|
|
|
|
namespace Yi.Framework.CodeGen.Domain.Handlers
|
|
{
|
|
public class TemplateHandlerBase
|
|
{
|
|
protected TableAggregateRoot Table { get; set; }
|
|
|
|
public void SetTable(TableAggregateRoot table)
|
|
{
|
|
Table = table;
|
|
}
|
|
}
|
|
}
|