首页 > 代码库 > MyBatis_4_一对多关系配置

MyBatis_4_一对多关系配置

---5-1 一对多关系配置1--------------------------------------------------------------

message

package com.imooc.bean;

/**
 * 与消息表对应的实体类
 */
public class Message {
    /**
     * 主键
     */
    private String id;
    /**
     * 指令名称
     */
    private String command;
    /**
     * 描述
     */
    private String description;
    /**
     * 内容
     */
    private String content;
    public String getId() {
        return id;
    }
    public void setId(String id) {
        this.id = id;
    }
    public String getCommand() {
        return command;
    }
    public void setCommand(String command) {
        this.command = command;
    }
    public String getDescription() {
        return description;
    }
    public void setDescription(String description) {
        this.description = description;
    }
    public String getContent() {
        return content;
    }
    public void setContent(String content) {
        this.content = content;
    }
}

command

package com.imooc.bean;

import java.util.List;

/**
 * 与指令表对应的实体类
 */
public class Command {
    /**
     * 主键
     */
    private String id;
    /**
     * 指令名称
     */
    private String name;
    /**
     * 描述
     */
    private String description;
    /**
     * 一条指令对应的自动回复内容列表
     */
    private List<CommandContent> contentList;
   
}

 commandcontent

package com.imooc.bean;

/**
 * 与指令内容表对应的实体类
 */
public class CommandContent {
    /**
     * 主键
     */
    private String id;
    
    /**
     * 自动回复的内容
     */
    private String content;
    
    /**
     * 关联的指令表主键
     */
    private String commandId;

}

 

---5-1 一对多关系配置2--------------------------------------------------------------

---5-1 一对多关系配置3--------------------------------------------------------------

---5-1 常用标签--------------------------------------------------------------

MyBatis_4_一对多关系配置