package org.ruoyi.common.wechat.web.model;
|
|
import com.jfinal.plugin.activerecord.ActiveRecordPlugin;
|
|
/**
|
* Generated by JFinal, do not modify this file.
|
* <pre>
|
* Example:
|
* public void configPlugin(Plugins me) {
|
* ActiveRecordPlugin arp = new ActiveRecordPlugin(...);
|
* _MappingKit.mapping(arp);
|
* me.add(arp);
|
* }
|
* </pre>
|
*/
|
public class _MappingKit {
|
|
public static void mapping(ActiveRecordPlugin arp) {
|
arp.addMapping("wx_rob_config", "id", WxRobConfig.class);
|
arp.addMapping("wx_rob_keyword", "id", WxRobKeyword.class);
|
arp.addMapping("wx_rob_relation", "id", WxRobRelation.class);
|
}
|
}
|