Files
TEngine/Luban/Luban.ClientServer/Templates/db/cs_sync/tables.tpl
ALEXTANG 36353294d6 Start TEngine3.0
Start TEngine3.0
2023-03-31 17:27:49 +08:00

17 lines
380 B
Smarty

using Bright.Serialization;
namespace {{namespace}}
{
public static class {{name}}
{
public static System.Collections.Generic.List<BrightDB.Transaction.TxnTable> TableList { get; } = new System.Collections.Generic.List<BrightDB.Transaction.TxnTable>
{
{{~ for table in tables~}}
{{table.full_name}}.Table,
{{~end}}
};
}
}