代码生成器自定义模板

来源:互联网 发布:金加隆哈利波特淘宝 编辑:程序博客网 时间:2024/05/22 04:14

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  <xsl:output method="xml" omit-xml-declaration="yes" indent="yes" />
  <xsl:template match="/Schema">namespace FyWeb.Model
{
<xsl:apply-templates select="B_Ms_AJZT" />
<xsl:for-each select="FIELDS/FIELD"> 
case"<xsl:value-of select="@Name" />":
return <xsl:value-of select="@Name" />;
</xsl:for-each>
}
</xsl:template>
  <xsl:template match="B_Ms_AJZT">
    <xsl:value-of select="@value" />
  </xsl:template>
</xsl:stylesheet>

原创粉丝点击