diff --git a/talkonlineweb/src/main/java/com/lyms/talkonlineweb/domain/ArticleInfo.java b/talkonlineweb/src/main/java/com/lyms/talkonlineweb/domain/ArticleInfo.java new file mode 100644 index 0000000..7941b1b --- /dev/null +++ b/talkonlineweb/src/main/java/com/lyms/talkonlineweb/domain/ArticleInfo.java @@ -0,0 +1,241 @@ +package com.lyms.talkonlineweb.domain; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableField; +import com.baomidou.mybatisplus.annotation.TableId; +import com.baomidou.mybatisplus.annotation.TableName; +import java.io.Serializable; +import java.util.Date; +import lombok.Data; + +/** + * + * @TableName article_info + */ +@TableName(value ="article_info") +@Data +public class ArticleInfo implements Serializable { + /** + * + */ + @TableField(value = "aid") + private Integer aid; + + /** + * 科室id + */ + @TableField(value = "did") + private Integer did; + + /** + * 疾病id + */ + @TableField(value = "iid") + private Integer iid; + + /** + * 文章标题 + */ + @TableField(value = "title") + private String title; + + /** + * 文章内容 + */ + @TableField(value = "content") + private String content; + + /** + * 是否发布. 0,否;1是 + */ + @TableField(value = "stat") + private Byte stat; + + /** + * 创建人id + */ + @TableField(value = "createdby") + private Integer createdby; + + /** + * 创建人姓名 + */ + @TableField(value = "cname") + private String cname; + + /** + * 创建时间 + */ + @TableField(value = "createdtime") + private Date createdtime; + + /** + * 更新人id + */ + @TableField(value = "updatedby") + private Integer updatedby; + + /** + * 更新人姓名 + */ + @TableField(value = "uname") + private String uname; + + /** + * 更新时间 + */ + @TableField(value = "updated_time") + private Date updatedTime; + + /** + * 科室标识 + */ + @TableField(value = "hddid") + private Integer hddid; + + /** + * 科室名称 + */ + @TableField(value = "dname") + private String dname; + + /** + * 所属医院id + */ + @TableField(value = "hid") + private Integer hid; + + /** + * 所属医院名称 + */ + @TableField(value = "hname") + private String hname; + + /** + * 详细科目 + */ + @TableField(value = "subcatalog") + private String subcatalog; + + /** + * 科室介绍 + */ + @TableField(value = "intro") + private String intro; + + /** + * + */ + @TableField(value = "id") + private Integer id; + + /** + * 编码 + */ + @TableField(value = "code") + private Integer code; + + /** + * 取值 + */ + @TableField(value = "value") + private String value; + + @TableField(exist = false) + private static final long serialVersionUID = 1L; + + @Override + public boolean equals(Object that) { + if (this == that) { + return true; + } + if (that == null) { + return false; + } + if (getClass() != that.getClass()) { + return false; + } + ArticleInfo other = (ArticleInfo) that; + return (this.getAid() == null ? other.getAid() == null : this.getAid().equals(other.getAid())) + && (this.getDid() == null ? other.getDid() == null : this.getDid().equals(other.getDid())) + && (this.getIid() == null ? other.getIid() == null : this.getIid().equals(other.getIid())) + && (this.getTitle() == null ? other.getTitle() == null : this.getTitle().equals(other.getTitle())) + && (this.getContent() == null ? other.getContent() == null : this.getContent().equals(other.getContent())) + && (this.getStat() == null ? other.getStat() == null : this.getStat().equals(other.getStat())) + && (this.getCreatedby() == null ? other.getCreatedby() == null : this.getCreatedby().equals(other.getCreatedby())) + && (this.getCname() == null ? other.getCname() == null : this.getCname().equals(other.getCname())) + && (this.getCreatedtime() == null ? other.getCreatedtime() == null : this.getCreatedtime().equals(other.getCreatedtime())) + && (this.getUpdatedby() == null ? other.getUpdatedby() == null : this.getUpdatedby().equals(other.getUpdatedby())) + && (this.getUname() == null ? other.getUname() == null : this.getUname().equals(other.getUname())) + && (this.getUpdatedTime() == null ? other.getUpdatedTime() == null : this.getUpdatedTime().equals(other.getUpdatedTime())) + && (this.getHddid() == null ? other.getHddid() == null : this.getHddid().equals(other.getHddid())) + && (this.getDname() == null ? other.getDname() == null : this.getDname().equals(other.getDname())) + && (this.getHid() == null ? other.getHid() == null : this.getHid().equals(other.getHid())) + && (this.getHname() == null ? other.getHname() == null : this.getHname().equals(other.getHname())) + && (this.getSubcatalog() == null ? other.getSubcatalog() == null : this.getSubcatalog().equals(other.getSubcatalog())) + && (this.getIntro() == null ? other.getIntro() == null : this.getIntro().equals(other.getIntro())) + && (this.getId() == null ? other.getId() == null : this.getId().equals(other.getId())) + && (this.getCode() == null ? other.getCode() == null : this.getCode().equals(other.getCode())) + && (this.getValue() == null ? other.getValue() == null : this.getValue().equals(other.getValue())); + } + + @Override + public int hashCode() { + final int prime = 31; + int result = 1; + result = prime * result + ((getAid() == null) ? 0 : getAid().hashCode()); + result = prime * result + ((getDid() == null) ? 0 : getDid().hashCode()); + result = prime * result + ((getIid() == null) ? 0 : getIid().hashCode()); + result = prime * result + ((getTitle() == null) ? 0 : getTitle().hashCode()); + result = prime * result + ((getContent() == null) ? 0 : getContent().hashCode()); + result = prime * result + ((getStat() == null) ? 0 : getStat().hashCode()); + result = prime * result + ((getCreatedby() == null) ? 0 : getCreatedby().hashCode()); + result = prime * result + ((getCname() == null) ? 0 : getCname().hashCode()); + result = prime * result + ((getCreatedtime() == null) ? 0 : getCreatedtime().hashCode()); + result = prime * result + ((getUpdatedby() == null) ? 0 : getUpdatedby().hashCode()); + result = prime * result + ((getUname() == null) ? 0 : getUname().hashCode()); + result = prime * result + ((getUpdatedTime() == null) ? 0 : getUpdatedTime().hashCode()); + result = prime * result + ((getHddid() == null) ? 0 : getHddid().hashCode()); + result = prime * result + ((getDname() == null) ? 0 : getDname().hashCode()); + result = prime * result + ((getHid() == null) ? 0 : getHid().hashCode()); + result = prime * result + ((getHname() == null) ? 0 : getHname().hashCode()); + result = prime * result + ((getSubcatalog() == null) ? 0 : getSubcatalog().hashCode()); + result = prime * result + ((getIntro() == null) ? 0 : getIntro().hashCode()); + result = prime * result + ((getId() == null) ? 0 : getId().hashCode()); + result = prime * result + ((getCode() == null) ? 0 : getCode().hashCode()); + result = prime * result + ((getValue() == null) ? 0 : getValue().hashCode()); + return result; + } + + @Override + public String toString() { + StringBuilder sb = new StringBuilder(); + sb.append(getClass().getSimpleName()); + sb.append(" ["); + sb.append("Hash = ").append(hashCode()); + sb.append(", aid=").append(aid); + sb.append(", did=").append(did); + sb.append(", iid=").append(iid); + sb.append(", title=").append(title); + sb.append(", content=").append(content); + sb.append(", stat=").append(stat); + sb.append(", createdby=").append(createdby); + sb.append(", cname=").append(cname); + sb.append(", createdtime=").append(createdtime); + sb.append(", updatedby=").append(updatedby); + sb.append(", uname=").append(uname); + sb.append(", updatedTime=").append(updatedTime); + sb.append(", hddid=").append(hddid); + sb.append(", dname=").append(dname); + sb.append(", hid=").append(hid); + sb.append(", hname=").append(hname); + sb.append(", subcatalog=").append(subcatalog); + sb.append(", intro=").append(intro); + sb.append(", id=").append(id); + sb.append(", code=").append(code); + sb.append(", value=").append(value); + sb.append(", serialVersionUID=").append(serialVersionUID); + sb.append("]"); + return sb.toString(); + } +} \ No newline at end of file diff --git a/talkonlineweb/src/main/java/com/lyms/talkonlineweb/domain/LymsChatgroup.java b/talkonlineweb/src/main/java/com/lyms/talkonlineweb/domain/LymsChatgroup.java new file mode 100644 index 0000000..4a436aa --- /dev/null +++ b/talkonlineweb/src/main/java/com/lyms/talkonlineweb/domain/LymsChatgroup.java @@ -0,0 +1,115 @@ +package com.lyms.talkonlineweb.domain; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableField; +import com.baomidou.mybatisplus.annotation.TableId; +import com.baomidou.mybatisplus.annotation.TableName; +import java.io.Serializable; +import java.util.Date; +import lombok.Data; + +/** + * + * @TableName lyms_chatgroup + */ +@TableName(value ="lyms_chatgroup") +@Data +public class LymsChatgroup implements Serializable { + /** + * + */ + @TableField(value = "id") + private Integer id; + + /** + * + */ + @TableField(value = "groupname") + private String groupname; + + /** + * + */ + @TableField(value = "description") + private String description; + + /** + * 客服人员ID + */ + @TableField(value = "owner") + private Integer owner; + + /** + * 患者ID + */ + @TableField(value = "from") + private Integer from; + + /** + * 医生ID + */ + @TableField(value = "target") + private Integer target; + + /** + * 创建时间 + */ + @TableField(value = "ctime") + private Date ctime; + + @TableField(exist = false) + private static final long serialVersionUID = 1L; + + @Override + public boolean equals(Object that) { + if (this == that) { + return true; + } + if (that == null) { + return false; + } + if (getClass() != that.getClass()) { + return false; + } + LymsChatgroup other = (LymsChatgroup) that; + return (this.getId() == null ? other.getId() == null : this.getId().equals(other.getId())) + && (this.getGroupname() == null ? other.getGroupname() == null : this.getGroupname().equals(other.getGroupname())) + && (this.getDescription() == null ? other.getDescription() == null : this.getDescription().equals(other.getDescription())) + && (this.getOwner() == null ? other.getOwner() == null : this.getOwner().equals(other.getOwner())) + && (this.getFrom() == null ? other.getFrom() == null : this.getFrom().equals(other.getFrom())) + && (this.getTarget() == null ? other.getTarget() == null : this.getTarget().equals(other.getTarget())) + && (this.getCtime() == null ? other.getCtime() == null : this.getCtime().equals(other.getCtime())); + } + + @Override + public int hashCode() { + final int prime = 31; + int result = 1; + result = prime * result + ((getId() == null) ? 0 : getId().hashCode()); + result = prime * result + ((getGroupname() == null) ? 0 : getGroupname().hashCode()); + result = prime * result + ((getDescription() == null) ? 0 : getDescription().hashCode()); + result = prime * result + ((getOwner() == null) ? 0 : getOwner().hashCode()); + result = prime * result + ((getFrom() == null) ? 0 : getFrom().hashCode()); + result = prime * result + ((getTarget() == null) ? 0 : getTarget().hashCode()); + result = prime * result + ((getCtime() == null) ? 0 : getCtime().hashCode()); + return result; + } + + @Override + public String toString() { + StringBuilder sb = new StringBuilder(); + sb.append(getClass().getSimpleName()); + sb.append(" ["); + sb.append("Hash = ").append(hashCode()); + sb.append(", id=").append(id); + sb.append(", groupname=").append(groupname); + sb.append(", description=").append(description); + sb.append(", owner=").append(owner); + sb.append(", from=").append(from); + sb.append(", target=").append(target); + sb.append(", ctime=").append(ctime); + sb.append(", serialVersionUID=").append(serialVersionUID); + sb.append("]"); + return sb.toString(); + } +} \ No newline at end of file diff --git a/talkonlineweb/src/main/java/com/lyms/talkonlineweb/domain/LymsUserrole.java b/talkonlineweb/src/main/java/com/lyms/talkonlineweb/domain/LymsUserrole.java new file mode 100644 index 0000000..13eea30 --- /dev/null +++ b/talkonlineweb/src/main/java/com/lyms/talkonlineweb/domain/LymsUserrole.java @@ -0,0 +1,115 @@ +package com.lyms.talkonlineweb.domain; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableField; +import com.baomidou.mybatisplus.annotation.TableId; +import com.baomidou.mybatisplus.annotation.TableName; +import java.io.Serializable; +import java.util.Date; +import lombok.Data; + +/** + * 用户角色关系表 + * @TableName lyms_userrole + */ +@TableName(value ="lyms_userrole") +@Data +public class LymsUserrole implements Serializable { + /** + * + */ + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 用户id + */ + @TableField(value = "uid") + private Integer uid; + + /** + * 角色id + */ + @TableField(value = "rid") + private Integer rid; + + /** + * 创建人 + */ + @TableField(value = "createdby") + private Integer createdby; + + /** + * 创建时间 + */ + @TableField(value = "createdtime") + private Date createdtime; + + /** + * 更新人 + */ + @TableField(value = "updatedby") + private Integer updatedby; + + /** + * 更新时间 + */ + @TableField(value = "updated_time") + private Date updatedTime; + + @TableField(exist = false) + private static final long serialVersionUID = 1L; + + @Override + public boolean equals(Object that) { + if (this == that) { + return true; + } + if (that == null) { + return false; + } + if (getClass() != that.getClass()) { + return false; + } + LymsUserrole other = (LymsUserrole) that; + return (this.getId() == null ? other.getId() == null : this.getId().equals(other.getId())) + && (this.getUid() == null ? other.getUid() == null : this.getUid().equals(other.getUid())) + && (this.getRid() == null ? other.getRid() == null : this.getRid().equals(other.getRid())) + && (this.getCreatedby() == null ? other.getCreatedby() == null : this.getCreatedby().equals(other.getCreatedby())) + && (this.getCreatedtime() == null ? other.getCreatedtime() == null : this.getCreatedtime().equals(other.getCreatedtime())) + && (this.getUpdatedby() == null ? other.getUpdatedby() == null : this.getUpdatedby().equals(other.getUpdatedby())) + && (this.getUpdatedTime() == null ? other.getUpdatedTime() == null : this.getUpdatedTime().equals(other.getUpdatedTime())); + } + + @Override + public int hashCode() { + final int prime = 31; + int result = 1; + result = prime * result + ((getId() == null) ? 0 : getId().hashCode()); + result = prime * result + ((getUid() == null) ? 0 : getUid().hashCode()); + result = prime * result + ((getRid() == null) ? 0 : getRid().hashCode()); + result = prime * result + ((getCreatedby() == null) ? 0 : getCreatedby().hashCode()); + result = prime * result + ((getCreatedtime() == null) ? 0 : getCreatedtime().hashCode()); + result = prime * result + ((getUpdatedby() == null) ? 0 : getUpdatedby().hashCode()); + result = prime * result + ((getUpdatedTime() == null) ? 0 : getUpdatedTime().hashCode()); + return result; + } + + @Override + public String toString() { + StringBuilder sb = new StringBuilder(); + sb.append(getClass().getSimpleName()); + sb.append(" ["); + sb.append("Hash = ").append(hashCode()); + sb.append(", id=").append(id); + sb.append(", uid=").append(uid); + sb.append(", rid=").append(rid); + sb.append(", createdby=").append(createdby); + sb.append(", createdtime=").append(createdtime); + sb.append(", updatedby=").append(updatedby); + sb.append(", updatedTime=").append(updatedTime); + sb.append(", serialVersionUID=").append(serialVersionUID); + sb.append("]"); + return sb.toString(); + } +} \ No newline at end of file diff --git a/talkonlineweb/src/main/java/com/lyms/talkonlineweb/mapper/ArticleInfoMapper.java b/talkonlineweb/src/main/java/com/lyms/talkonlineweb/mapper/ArticleInfoMapper.java new file mode 100644 index 0000000..3b394cb --- /dev/null +++ b/talkonlineweb/src/main/java/com/lyms/talkonlineweb/mapper/ArticleInfoMapper.java @@ -0,0 +1,15 @@ +package com.lyms.talkonlineweb.mapper; + +import com.lyms.talkonlineweb.domain.ArticleInfo; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + * @Entity com.lyms.talkonlineweb.domain.ArticleInfo + */ +public interface ArticleInfoMapper extends BaseMapper { + +} + + + + diff --git a/talkonlineweb/src/main/java/com/lyms/talkonlineweb/mapper/LymsChatgroupMapper.java b/talkonlineweb/src/main/java/com/lyms/talkonlineweb/mapper/LymsChatgroupMapper.java new file mode 100644 index 0000000..ffba207 --- /dev/null +++ b/talkonlineweb/src/main/java/com/lyms/talkonlineweb/mapper/LymsChatgroupMapper.java @@ -0,0 +1,15 @@ +package com.lyms.talkonlineweb.mapper; + +import com.lyms.talkonlineweb.domain.LymsChatgroup; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + * @Entity com.lyms.talkonlineweb.domain.LymsChatgroup + */ +public interface LymsChatgroupMapper extends BaseMapper { + +} + + + + diff --git a/talkonlineweb/src/main/java/com/lyms/talkonlineweb/mapper/LymsUserroleMapper.java b/talkonlineweb/src/main/java/com/lyms/talkonlineweb/mapper/LymsUserroleMapper.java new file mode 100644 index 0000000..e9dbc0b --- /dev/null +++ b/talkonlineweb/src/main/java/com/lyms/talkonlineweb/mapper/LymsUserroleMapper.java @@ -0,0 +1,23 @@ +package com.lyms.talkonlineweb.mapper; + +import com.lyms.talkonlineweb.domain.LymsUserrole; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; +import org.apache.ibatis.annotations.Delete; +import org.apache.ibatis.annotations.Insert; +import org.apache.ibatis.annotations.Param; + +/** + * @Entity com.lyms.talkonlineweb.domain.LymsUserrole + */ +public interface LymsUserroleMapper extends BaseMapper { + + @Delete("delete from lyms_userrole where uid=#{uid}") + int delRoleByUser(@Param("uid") int uid); + + @Insert(("insert into lyms_userrole(uid,rid) values(#{rid},#{rid})")) + int addRoleUser(@Param("uid") int uid,@Param("rid") int rid); +} + + + + diff --git a/talkonlineweb/src/main/java/com/lyms/talkonlineweb/service/ArticleInfoService.java b/talkonlineweb/src/main/java/com/lyms/talkonlineweb/service/ArticleInfoService.java new file mode 100644 index 0000000..8c7f535 --- /dev/null +++ b/talkonlineweb/src/main/java/com/lyms/talkonlineweb/service/ArticleInfoService.java @@ -0,0 +1,11 @@ +package com.lyms.talkonlineweb.service; + +import com.lyms.talkonlineweb.domain.ArticleInfo; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + * + */ +public interface ArticleInfoService extends IService { + +} diff --git a/talkonlineweb/src/main/java/com/lyms/talkonlineweb/service/LymsChatgroupService.java b/talkonlineweb/src/main/java/com/lyms/talkonlineweb/service/LymsChatgroupService.java new file mode 100644 index 0000000..e03999e --- /dev/null +++ b/talkonlineweb/src/main/java/com/lyms/talkonlineweb/service/LymsChatgroupService.java @@ -0,0 +1,11 @@ +package com.lyms.talkonlineweb.service; + +import com.lyms.talkonlineweb.domain.LymsChatgroup; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + * + */ +public interface LymsChatgroupService extends IService { + +} diff --git a/talkonlineweb/src/main/java/com/lyms/talkonlineweb/service/LymsUserroleService.java b/talkonlineweb/src/main/java/com/lyms/talkonlineweb/service/LymsUserroleService.java new file mode 100644 index 0000000..13c57b8 --- /dev/null +++ b/talkonlineweb/src/main/java/com/lyms/talkonlineweb/service/LymsUserroleService.java @@ -0,0 +1,14 @@ +package com.lyms.talkonlineweb.service; + +import com.lyms.talkonlineweb.domain.LymsUserrole; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + * + */ +public interface LymsUserroleService extends IService { + + int delRoleByUser(int uid); + + int addRoleUser(int uid, int rid); +} diff --git a/talkonlineweb/src/main/java/com/lyms/talkonlineweb/service/impl/ArticleInfoServiceImpl.java b/talkonlineweb/src/main/java/com/lyms/talkonlineweb/service/impl/ArticleInfoServiceImpl.java new file mode 100644 index 0000000..ddbe533 --- /dev/null +++ b/talkonlineweb/src/main/java/com/lyms/talkonlineweb/service/impl/ArticleInfoServiceImpl.java @@ -0,0 +1,20 @@ +package com.lyms.talkonlineweb.service.impl; + +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import com.lyms.talkonlineweb.domain.ArticleInfo; +import com.lyms.talkonlineweb.service.ArticleInfoService; +import com.lyms.talkonlineweb.mapper.ArticleInfoMapper; +import org.springframework.stereotype.Service; + +/** + * + */ +@Service +public class ArticleInfoServiceImpl extends ServiceImpl + implements ArticleInfoService{ + +} + + + + diff --git a/talkonlineweb/src/main/java/com/lyms/talkonlineweb/service/impl/LymsChatgroupServiceImpl.java b/talkonlineweb/src/main/java/com/lyms/talkonlineweb/service/impl/LymsChatgroupServiceImpl.java new file mode 100644 index 0000000..25dfc11 --- /dev/null +++ b/talkonlineweb/src/main/java/com/lyms/talkonlineweb/service/impl/LymsChatgroupServiceImpl.java @@ -0,0 +1,20 @@ +package com.lyms.talkonlineweb.service.impl; + +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import com.lyms.talkonlineweb.domain.LymsChatgroup; +import com.lyms.talkonlineweb.service.LymsChatgroupService; +import com.lyms.talkonlineweb.mapper.LymsChatgroupMapper; +import org.springframework.stereotype.Service; + +/** + * + */ +@Service +public class LymsChatgroupServiceImpl extends ServiceImpl + implements LymsChatgroupService{ + +} + + + + diff --git a/talkonlineweb/src/main/java/com/lyms/talkonlineweb/service/impl/LymsUserroleServiceImpl.java b/talkonlineweb/src/main/java/com/lyms/talkonlineweb/service/impl/LymsUserroleServiceImpl.java new file mode 100644 index 0000000..4681329 --- /dev/null +++ b/talkonlineweb/src/main/java/com/lyms/talkonlineweb/service/impl/LymsUserroleServiceImpl.java @@ -0,0 +1,33 @@ +package com.lyms.talkonlineweb.service.impl; + +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import com.lyms.talkonlineweb.domain.LymsUserrole; +import com.lyms.talkonlineweb.service.LymsUserroleService; +import com.lyms.talkonlineweb.mapper.LymsUserroleMapper; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Service; + +/** + * + */ +@Service +public class LymsUserroleServiceImpl extends ServiceImpl + implements LymsUserroleService{ + + @Autowired + private LymsUserroleMapper lymsUserroleMapper; + + @Override + public int delRoleByUser(int uid) { + return lymsUserroleMapper.delRoleByUser(uid); + } + + @Override + public int addRoleUser(int uid, int rid) { + return lymsUserroleMapper.addRoleUser(uid,rid); + } +} + + + + diff --git a/talkonlineweb/src/main/resources/mapper/ArticleInfoMapper.xml b/talkonlineweb/src/main/resources/mapper/ArticleInfoMapper.xml new file mode 100644 index 0000000..23df928 --- /dev/null +++ b/talkonlineweb/src/main/resources/mapper/ArticleInfoMapper.xml @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + aid,did,iid, + title,content,stat, + createdby,cname,createdtime, + updatedby,uname,updated_time, + hddid,dname,hid, + hname,subcatalog,intro, + id,code,value + + diff --git a/talkonlineweb/src/main/resources/mapper/LymsChatgroupMapper.xml b/talkonlineweb/src/main/resources/mapper/LymsChatgroupMapper.xml new file mode 100644 index 0000000..aa2d2d7 --- /dev/null +++ b/talkonlineweb/src/main/resources/mapper/LymsChatgroupMapper.xml @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + id,groupname,description, + owner,from,target, + ctime + + diff --git a/talkonlineweb/src/main/resources/mapper/LymsUserroleMapper.xml b/talkonlineweb/src/main/resources/mapper/LymsUserroleMapper.xml new file mode 100644 index 0000000..dc0c442 --- /dev/null +++ b/talkonlineweb/src/main/resources/mapper/LymsUserroleMapper.xml @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + id,uid,rid, + createdby,createdtime,updatedby, + updated_time + +