Micro engine manifest.xml

Micro engine manifest.xml

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns="http://www.we7.cc" versionCode="0.52,0.6,0.7">
   <application setting="false">
      <name><![CDATA[应用名称]]></name>
      <identifie><![CDATA[应用标识]]></identifie>
      <version><![CDATA[应用版本]]></version>
      <type><![CDATA[services]]></type>
      <ability><![CDATA[应用简述]]></ability>
      <description><![CDATA[应用描述]]></description>
      <author><![CDATA[应用作者]]></author>
      <url><![CDATA[http://bbs.we7.cc/]]></url>
   </application>
   <platform><
       // subscribe message type
      subscribes>
         <message type="text" />
         <message type="image" />
         <message type="voice" />
         <message type="video" />
         <message type="location" />
         <message type="link" />
         <message type="subscribe" />
         <message type="unsubscribe" />
         <message type="qr" />
         <message type="trace" />
         <message type="click" />
         <message type="view" />
      </subscribes>
       //直接处理的类型
      <handles>
         <message type="text" />
         <message type="image" />
         <message type="voice" />
         <message type="video" />
         <message type="location" />
         <message type="link" />
         <message type="subscribe" />
         <message type="qr" />
         <message type="trace" />
         <message type="click" />
      </handles>
    //是否要嵌入关键字回复规则
      <rule embed="true" />
      <card embed="false" />
   </platform>
   <bindings><>the MENU<
        // menu Business Administration
      
         entry title="粉丝管理" do="yuchan_fans" state="" direct="false" />
         <entry title="管理员管理" do="yuchan_admin" state="" direct="false" />
      </menu>
   </bindings>
   <permissions>
   </permissions>
   <install><![CDATA[
CREATE TABLE IF NOT EXISTS `ims_yuchan_admin` (
  `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'ID',
  `uid` int(11) NOT NULL COMMENT 'Public numbers in ID ', 
  ` openid` VARCHAR (50) the CHARACTER the SET UTF8 the COMMENT the NOT NULL 'micro-channel ID', 
  `realname` VARCHAR (10) the CHARACTER the SET UTF8 the NOT NULL the COMMENT 'real name', 
  `nickname` VARCHAR (50) CHARACTER the SET utf8 the NOT NULL the COMMENT 'nickname', 
  ` avatar` VARCHAR (200) CHARACTER the SET utf8 the NOT NULL the COMMENT 'avatar', 
  `tel` VARCHAR (12) CHARACTER the SET utf8 the NOT NULL COMMENT 'telephone number', 
  `status` tinyint (2) the NOT NULL the DEFAULT '2' the COMMENT '{2: audit, 1: through}', 
  ` create_time` int (. 11) the NOT NULL COMMENT 'created', 
  a PRIMARY KEY ( `id`) 
) = ENGINE the InnoDB the DEFAULT the CHARSET = utf8mb4 the COMMENT = 'list of administrators'; 
]]> </ the install > 
   <uninstall><![CDATA[[CDATA[
DROP TABLE IF EXISTS `ims_yuchan_admin`;
]]></uninstall>
   <upgrade><![CDATA[]]></upgrade>
</manifest>


Reference Documents

Guess you like

Origin www.cnblogs.com/GetcharZp/p/11765488.html