办学质量监测教学评价系统
ageerle
2025-03-04 d1b6a13a58afa4e03f4d6cb0a62cd759ccf306f4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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);
    }
}