1
<%--
2
Name:
3
Author:
4
Description:
5
--%>
6
<%@ CodeTemplate Language="C#" ResponseEncoding="UTF-8" TargetLanguage="Text" Src="" Inherits="" Debug="False" Description="Template description here." %>
7
8
<%@ Assembly Name="System.Data" %>
9
<%@ Import Namespace="System.Data" %>
10
11
<%@ Property Name="NameSpace" Type="System.String" Default="" Optional="false" Category="命名空间" Description="当前生成实体类的命名空间" %>
12
<%@ Property Name="ModuleName" Type="System.String" Default="" Optional="false" Category="" Description="项目名称" %>
13
14
using System;
15
using System.Collections.Generic;
16
using System.Text;
17
using System.Configuration.Provider;
18
19
namespace <%= NameSpace%>.Framework
20
>
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20