1
<%--
2
Name:
3
Author:
4
Description:
5
--%>
6
<%@ CodeTemplate Language="C#" ResponseEncoding="UTF-8" TargetLanguage="Text" Src="Helper.cs" Inherits="Helper" Debug="False" Description="Template description here." %>
7
8
<%@ Assembly Name="System.Data" %>
9
<%@ Assembly Name="SchemaExplorer" %>
10
<%@ Assembly Name="CodeSmith.BaseTemplates" %>
11
<%@ Import Namespace="System.Data" %>
12
<%@ Import Namespace="SchemaExplorer" %>
13
<%@ Import Namespace="CodeSmith.BaseTemplates" %>
14
15
<%@ Property Name="DataBase" Type="SchemaExplorer.DatabaseSchema" Category="1.数据库对象" Description="当前生成的数据库对象" %>
16
<%@ Property Name="NameSpace" Type="System.String" Default="" Optional="false" Category="" Description="当前生成命名空间" %>
17
<%@ Property Name="ModuleName" Type="System.String" Default="" Optional="false" Category="" Description="项目名称" %>
18
19
using System;
20
using System.Collections.Generic;
21
using System.Text;
22
using rs.ABC.Framework;
23
24
namespace <%=NameSpace%>.Business
25
>
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25