Commit d96df699 authored by 张宽's avatar 张宽

first commit

parent 4baf4693
File mode changed from 100755 to 100644
File mode changed from 100755 to 100644
#!/bin/bash
rm -rf dao/src/main/java/com/haomostudio/SeekTruthBackend/*
rm -rf domain/src/main/java/com/haomostudio/SeekTruthBackend/*
rm -rf web/src/main/resources/mybatis/com/haomostudio/SeekTruthBackend/*
#!/bin/bash
rm -rf dao/src/main/java/com/haomostudio/zhangjiakouapibackend/dao/*
rm -rf domain/src/main/java/com/haomostudio/zhangjiakouapibackend/domain/*
rm -rf web/src/main/resources/mybatis/com/haomostudio/zhangjiakouapibackend/crm/*
package com.haomostudio.delivery.dao;
import com.haomostudio.delivery.po.Catalog;
import com.haomostudio.delivery.po.CatalogExample;
import java.util.List;
import org.apache.ibatis.annotations.Param;
import org.apache.ibatis.session.RowBounds;
public interface CatalogMapper {
long countByExample(CatalogExample example);
int deleteByExample(CatalogExample example);
int deleteByPrimaryKey(String cid);
int insert(Catalog record);
int insertSelective(Catalog record);
List<Catalog> selectByExampleWithRowbounds(CatalogExample example, RowBounds rowBounds);
List<Catalog> selectByExample(CatalogExample example);
Catalog selectByPrimaryKey(String cid);
int updateByExampleSelective(@Param("record") Catalog record, @Param("example") CatalogExample example);
int updateByExample(@Param("record") Catalog record, @Param("example") CatalogExample example);
int updateByPrimaryKeySelective(Catalog record);
int updateByPrimaryKey(Catalog record);
}
\ No newline at end of file
package com.haomostudio.delivery.dao;
import com.haomostudio.delivery.po.Dept;
import com.haomostudio.delivery.po.DeptExample;
import java.util.List;
import org.apache.ibatis.annotations.Param;
import org.apache.ibatis.session.RowBounds;
public interface DeptMapper {
long countByExample(DeptExample example);
int deleteByExample(DeptExample example);
int deleteByPrimaryKey(String did);
int insert(Dept record);
int insertSelective(Dept record);
List<Dept> selectByExampleWithRowbounds(DeptExample example, RowBounds rowBounds);
List<Dept> selectByExample(DeptExample example);
Dept selectByPrimaryKey(String did);
int updateByExampleSelective(@Param("record") Dept record, @Param("example") DeptExample example);
int updateByExample(@Param("record") Dept record, @Param("example") DeptExample example);
int updateByPrimaryKeySelective(Dept record);
int updateByPrimaryKey(Dept record);
}
\ No newline at end of file
package com.haomostudio.delivery.dao;
import com.haomostudio.delivery.po.RoleCatalog;
import com.haomostudio.delivery.po.RoleCatalogExample;
import java.util.List;
import org.apache.ibatis.annotations.Param;
import org.apache.ibatis.session.RowBounds;
public interface RoleCatalogMapper {
long countByExample(RoleCatalogExample example);
int deleteByExample(RoleCatalogExample example);
int deleteByPrimaryKey(String roleCatalogid);
int insert(RoleCatalog record);
int insertSelective(RoleCatalog record);
List<RoleCatalog> selectByExampleWithRowbounds(RoleCatalogExample example, RowBounds rowBounds);
List<RoleCatalog> selectByExample(RoleCatalogExample example);
RoleCatalog selectByPrimaryKey(String roleCatalogid);
int updateByExampleSelective(@Param("record") RoleCatalog record, @Param("example") RoleCatalogExample example);
int updateByExample(@Param("record") RoleCatalog record, @Param("example") RoleCatalogExample example);
int updateByPrimaryKeySelective(RoleCatalog record);
int updateByPrimaryKey(RoleCatalog record);
}
\ No newline at end of file
package com.haomostudio.delivery.dao;
import com.haomostudio.delivery.po.TRole;
import com.haomostudio.delivery.po.TRoleExample;
import java.util.List;
import org.apache.ibatis.annotations.Param;
import org.apache.ibatis.session.RowBounds;
public interface TRoleMapper {
long countByExample(TRoleExample example);
int deleteByExample(TRoleExample example);
int deleteByPrimaryKey(String rid);
int insert(TRole record);
int insertSelective(TRole record);
List<TRole> selectByExampleWithRowbounds(TRoleExample example, RowBounds rowBounds);
List<TRole> selectByExample(TRoleExample example);
TRole selectByPrimaryKey(String rid);
int updateByExampleSelective(@Param("record") TRole record, @Param("example") TRoleExample example);
int updateByExample(@Param("record") TRole record, @Param("example") TRoleExample example);
int updateByPrimaryKeySelective(TRole record);
int updateByPrimaryKey(TRole record);
}
\ No newline at end of file
package com.haomostudio.delivery.dao;
import com.haomostudio.delivery.po.TUserRole;
import com.haomostudio.delivery.po.TUserRoleExample;
import java.util.List;
import org.apache.ibatis.annotations.Param;
import org.apache.ibatis.session.RowBounds;
public interface TUserRoleMapper {
long countByExample(TUserRoleExample example);
int deleteByExample(TUserRoleExample example);
int deleteByPrimaryKey(String userRoleid);
int insert(TUserRole record);
int insertSelective(TUserRole record);
List<TUserRole> selectByExampleWithRowbounds(TUserRoleExample example, RowBounds rowBounds);
List<TUserRole> selectByExample(TUserRoleExample example);
TUserRole selectByPrimaryKey(String userRoleid);
int updateByExampleSelective(@Param("record") TUserRole record, @Param("example") TUserRoleExample example);
int updateByExample(@Param("record") TUserRole record, @Param("example") TUserRoleExample example);
int updateByPrimaryKeySelective(TUserRole record);
int updateByPrimaryKey(TUserRole record);
}
\ No newline at end of file
package com.haomostudio.delivery.dao;
import com.haomostudio.delivery.po.User;
import com.haomostudio.delivery.po.UserExample;
import java.util.List;
import org.apache.ibatis.annotations.Param;
import org.apache.ibatis.session.RowBounds;
public interface UserMapper {
long countByExample(UserExample example);
int deleteByExample(UserExample example);
int deleteByPrimaryKey(String uid);
int insert(User record);
int insertSelective(User record);
List<User> selectByExampleWithRowbounds(UserExample example, RowBounds rowBounds);
List<User> selectByExample(UserExample example);
User selectByPrimaryKey(String uid);
int updateByExampleSelective(@Param("record") User record, @Param("example") UserExample example);
int updateByExample(@Param("record") User record, @Param("example") UserExample example);
int updateByPrimaryKeySelective(User record);
int updateByPrimaryKey(User record);
}
\ No newline at end of file
package com.haomostudio.Util;
/**
* Created by guanpb on 2018/7/10.
*/
public class Page {
// 分页查询开始记录位置
private int begin;
// 分页查看下结束位置
private int end;
// 每页显示记录数
private int length;
// 查询结果总记录数
private int count;
// 当前页码
private int current;
// 总共页数
private int total;
public Page() {
}
/**
* 构造函数
*
* @param begin
* @param length
*/
public Page(int begin, int length) {
this.begin = begin;
this.length = length;
this.end = this.begin + this.length;
this.current = (int) Math.floor((this.begin * 1.0d) / this.length) + 1;
}
/**
* @param begin
* @param length
* @param count
*/
public Page(int begin, int length, int count) {
this(begin, length);
this.count = count;
}
/**
* @return the begin
*/
public int getBegin() {
return begin;
}
/**
* @return the end
*/
public int getEnd() {
return end;
}
/**
* @param end
* the end to set
*/
public void setEnd(int end) {
this.end = end;
}
/**
* @param begin
* the begin to set
*/
public void setBegin(int begin) {
this.begin = begin;
if (this.length != 0) {
this.current = (int) Math.floor((this.begin * 1.0d) / this.length) + 1;
}
}
/**
* @return the length
*/
public int getLength() {
return length;
}
/**
* @param length
* the length to set
*/
public void setLength(int length) {
this.length = length;
if (this.begin != 0) {
this.current = (int) Math.floor((this.begin * 1.0d) / this.length) + 1;
}
}
/**
* @return the count
*/
public int getCount() {
return count;
}
/**
* @param count
* the count to set
*/
public void setCount(int count) {
this.count = count;
this.total = (int) Math.floor((this.count * 1.0d) / this.length);
if (this.count % this.length != 0) {
this.total++;
}
}
/**
* @return the current
*/
public int getCurrent() {
return current;
}
/**
* @param current
* the current to set
*/
public void setCurrent(int current) {
this.current = current;
}
/**
* @return the total
*/
public int getTotal() {
if (total == 0) {
return 1;
}
return total;
}
/**
* @param total
* the total to set
*/
public void setTotal(int total) {
this.total = total;
}
}
package com.haomostudio.delivery.po;
import java.util.Date;
public class Catalog {
private String cid;
private String cname;
private String resource;
private String id;
private Date createTime;
private Date lastUpdateTime;
public String getCid() {
return cid;
}
public void setCid(String cid) {
this.cid = cid;
}
public String getCname() {
return cname;
}
public void setCname(String cname) {
this.cname = cname;
}
public String getResource() {
return resource;
}
public void setResource(String resource) {
this.resource = resource;
}
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public Date getCreateTime() {
return createTime;
}
public void setCreateTime(Date createTime) {
this.createTime = createTime;
}
public Date getLastUpdateTime() {
return lastUpdateTime;
}
public void setLastUpdateTime(Date lastUpdateTime) {
this.lastUpdateTime = lastUpdateTime;
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append(getClass().getSimpleName());
sb.append(" [");
sb.append("Hash = ").append(hashCode());
sb.append(", cid=").append(cid);
sb.append(", cname=").append(cname);
sb.append(", resource=").append(resource);
sb.append(", id=").append(id);
sb.append(", createTime=").append(createTime);
sb.append(", lastUpdateTime=").append(lastUpdateTime);
sb.append("]");
return sb.toString();
}
}
\ No newline at end of file
package com.haomostudio.delivery.po;
import java.util.Date;
public class Dept {
private String did;
private String id;
private String dname;
private Date createTime;
private Date lastUpdateTime;
public String getDid() {
return did;
}
public void setDid(String did) {
this.did = did;
}
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public String getDname() {
return dname;
}
public void setDname(String dname) {
this.dname = dname;
}
public Date getCreateTime() {
return createTime;
}
public void setCreateTime(Date createTime) {
this.createTime = createTime;
}
public Date getLastUpdateTime() {
return lastUpdateTime;
}
public void setLastUpdateTime(Date lastUpdateTime) {
this.lastUpdateTime = lastUpdateTime;
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append(getClass().getSimpleName());
sb.append(" [");
sb.append("Hash = ").append(hashCode());
sb.append(", did=").append(did);
sb.append(", id=").append(id);
sb.append(", dname=").append(dname);
sb.append(", createTime=").append(createTime);
sb.append(", lastUpdateTime=").append(lastUpdateTime);
sb.append("]");
return sb.toString();
}
}
\ No newline at end of file
package com.haomostudio.delivery.po;
import java.util.Date;
public class RoleCatalog {
private String roleCatalogid;
private String rid;
private String cid;
private String id;
private Date createTime;
private Date lastUpdateTime;
public String getRoleCatalogid() {
return roleCatalogid;
}
public void setRoleCatalogid(String roleCatalogid) {
this.roleCatalogid = roleCatalogid;
}
public String getRid() {
return rid;
}
public void setRid(String rid) {
this.rid = rid;
}
public String getCid() {
return cid;
}
public void setCid(String cid) {
this.cid = cid;
}
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public Date getCreateTime() {
return createTime;
}
public void setCreateTime(Date createTime) {
this.createTime = createTime;
}
public Date getLastUpdateTime() {
return lastUpdateTime;
}
public void setLastUpdateTime(Date lastUpdateTime) {
this.lastUpdateTime = lastUpdateTime;
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append(getClass().getSimpleName());
sb.append(" [");
sb.append("Hash = ").append(hashCode());
sb.append(", roleCatalogid=").append(roleCatalogid);
sb.append(", rid=").append(rid);
sb.append(", cid=").append(cid);
sb.append(", id=").append(id);
sb.append(", createTime=").append(createTime);
sb.append(", lastUpdateTime=").append(lastUpdateTime);
sb.append("]");
return sb.toString();
}
}
\ No newline at end of file
package com.haomostudio.delivery.po;
import java.util.Date;
public class TRole {
private String rid;
private String rname;
private String id;
private Date createTime;
private Date lastUpdateTime;
public String getRid() {
return rid;
}
public void setRid(String rid) {
this.rid = rid;
}
public String getRname() {
return rname;
}
public void setRname(String rname) {
this.rname = rname;
}
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public Date getCreateTime() {
return createTime;
}
public void setCreateTime(Date createTime) {
this.createTime = createTime;
}
public Date getLastUpdateTime() {
return lastUpdateTime;
}
public void setLastUpdateTime(Date lastUpdateTime) {
this.lastUpdateTime = lastUpdateTime;
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append(getClass().getSimpleName());
sb.append(" [");
sb.append("Hash = ").append(hashCode());
sb.append(", rid=").append(rid);
sb.append(", rname=").append(rname);
sb.append(", id=").append(id);
sb.append(", createTime=").append(createTime);
sb.append(", lastUpdateTime=").append(lastUpdateTime);
sb.append("]");
return sb.toString();
}
}
\ No newline at end of file
package com.haomostudio.delivery.po;
import java.util.Date;
public class TUserRole {
private String userRoleid;
private String uid;
private String rid;
private String id;
private Date createTime;
private Date lastUpdateTime;
public String getUserRoleid() {
return userRoleid;
}
public void setUserRoleid(String userRoleid) {
this.userRoleid = userRoleid;
}
public String getUid() {
return uid;
}
public void setUid(String uid) {
this.uid = uid;
}
public String getRid() {
return rid;
}
public void setRid(String rid) {
this.rid = rid;
}
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public Date getCreateTime() {
return createTime;
}
public void setCreateTime(Date createTime) {
this.createTime = createTime;
}
public Date getLastUpdateTime() {
return lastUpdateTime;
}
public void setLastUpdateTime(Date lastUpdateTime) {
this.lastUpdateTime = lastUpdateTime;
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append(getClass().getSimpleName());
sb.append(" [");
sb.append("Hash = ").append(hashCode());
sb.append(", userRoleid=").append(userRoleid);
sb.append(", uid=").append(uid);
sb.append(", rid=").append(rid);
sb.append(", id=").append(id);
sb.append(", createTime=").append(createTime);
sb.append(", lastUpdateTime=").append(lastUpdateTime);
sb.append("]");
return sb.toString();
}
}
\ No newline at end of file
package com.haomostudio.delivery.po;
import java.util.Date;
public class User {
private String uid;
private String username;
private String did;
private String password;
private String gender;
private String age;
private String id;
private Date createTime;
private Date lastUpdateTime;
public String getUid() {
return uid;
}
public void setUid(String uid) {
this.uid = uid;
}
public String getUsername() {
return username;
}
public void setUsername(String username) {
this.username = username;
}
public String getDid() {
return did;
}
public void setDid(String did) {
this.did = did;
}
public String getPassword() {
return password;
}
public void setPassword(String password) {
this.password = password;
}
public String getGender() {
return gender;
}
public void setGender(String gender) {
this.gender = gender;
}
public String getAge() {
return age;
}
public void setAge(String age) {
this.age = age;
}
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public Date getCreateTime() {
return createTime;
}
public void setCreateTime(Date createTime) {
this.createTime = createTime;
}
public Date getLastUpdateTime() {
return lastUpdateTime;
}
public void setLastUpdateTime(Date lastUpdateTime) {
this.lastUpdateTime = lastUpdateTime;
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append(getClass().getSimpleName());
sb.append(" [");
sb.append("Hash = ").append(hashCode());
sb.append(", uid=").append(uid);
sb.append(", username=").append(username);
sb.append(", did=").append(did);
sb.append(", password=").append(password);
sb.append(", gender=").append(gender);
sb.append(", age=").append(age);
sb.append(", id=").append(id);
sb.append(", createTime=").append(createTime);
sb.append(", lastUpdateTime=").append(lastUpdateTime);
sb.append("]");
return sb.toString();
}
}
\ No newline at end of file
package com.haomostudio.delivery.vo;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.haomostudio.delivery.po.Catalog;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
public class CatalogVO{
@JsonProperty("includes")
private Map<String, Object> includes;
@JsonProperty("refers")
private Map<String, List<Object>> refers;
@JsonProperty("relates")
private Map<String, List<Object>> relates;
private Catalog superior;
public Catalog getSuperior() {
return superior;
}
public CatalogVO(Catalog superior){
this.superior = superior;
this.includes = new HashMap<>();
this.refers = new HashMap<>();
this.relates = new HashMap<>();
}
public void setSuperior(Catalog superior) {
this.superior = superior;
}
public void setIncludes(Map<String, Object>includes){
this.includes = includes;
}
public Map<String, Object> getIncludes(){
return this.includes;
}
public void setRefers(Map<String, List<Object>> refers){
this.refers = refers;
}
public Map<String, List<Object>> getRefers(){
return this.refers;
}
public void setRelates(Map<String, List<Object>> relates){
this.relates = relates;
}
public Map<String, List<Object>> getRelates(){
return this.relates;
}
}
package com.haomostudio.delivery.vo;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.haomostudio.delivery.po.Dept;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
public class DeptVO{
@JsonProperty("includes")
private Map<String, Object> includes;
@JsonProperty("refers")
private Map<String, List<Object>> refers;
@JsonProperty("relates")
private Map<String, List<Object>> relates;
private Dept superior;
public Dept getSuperior() {
return superior;
}
public DeptVO(Dept superior){
this.superior = superior;
this.includes = new HashMap<>();
this.refers = new HashMap<>();
this.relates = new HashMap<>();
}
public void setSuperior(Dept superior) {
this.superior = superior;
}
public void setIncludes(Map<String, Object>includes){
this.includes = includes;
}
public Map<String, Object> getIncludes(){
return this.includes;
}
public void setRefers(Map<String, List<Object>> refers){
this.refers = refers;
}
public Map<String, List<Object>> getRefers(){
return this.refers;
}
public void setRelates(Map<String, List<Object>> relates){
this.relates = relates;
}
public Map<String, List<Object>> getRelates(){
return this.relates;
}
}
package com.haomostudio.delivery.vo;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.haomostudio.delivery.po.RoleCatalog;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
public class RoleCatalogVO{
@JsonProperty("includes")
private Map<String, Object> includes;
@JsonProperty("refers")
private Map<String, List<Object>> refers;
@JsonProperty("relates")
private Map<String, List<Object>> relates;
private RoleCatalog superior;
public RoleCatalog getSuperior() {
return superior;
}
public RoleCatalogVO(RoleCatalog superior){
this.superior = superior;
this.includes = new HashMap<>();
this.refers = new HashMap<>();
this.relates = new HashMap<>();
}
public void setSuperior(RoleCatalog superior) {
this.superior = superior;
}
public void setIncludes(Map<String, Object>includes){
this.includes = includes;
}
public Map<String, Object> getIncludes(){
return this.includes;
}
public void setRefers(Map<String, List<Object>> refers){
this.refers = refers;
}
public Map<String, List<Object>> getRefers(){
return this.refers;
}
public void setRelates(Map<String, List<Object>> relates){
this.relates = relates;
}
public Map<String, List<Object>> getRelates(){
return this.relates;
}
}
package com.haomostudio.delivery.vo;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.haomostudio.delivery.po.TRole;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
public class TRoleVO{
@JsonProperty("includes")
private Map<String, Object> includes;
@JsonProperty("refers")
private Map<String, List<Object>> refers;
@JsonProperty("relates")
private Map<String, List<Object>> relates;
private TRole superior;
public TRole getSuperior() {
return superior;
}
public TRoleVO(TRole superior){
this.superior = superior;
this.includes = new HashMap<>();
this.refers = new HashMap<>();
this.relates = new HashMap<>();
}
public void setSuperior(TRole superior) {
this.superior = superior;
}
public void setIncludes(Map<String, Object>includes){
this.includes = includes;
}
public Map<String, Object> getIncludes(){
return this.includes;
}
public void setRefers(Map<String, List<Object>> refers){
this.refers = refers;
}
public Map<String, List<Object>> getRefers(){
return this.refers;
}
public void setRelates(Map<String, List<Object>> relates){
this.relates = relates;
}
public Map<String, List<Object>> getRelates(){
return this.relates;
}
}
package com.haomostudio.delivery.vo;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.haomostudio.delivery.po.TUserRole;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
public class TUserRoleVO{
@JsonProperty("includes")
private Map<String, Object> includes;
@JsonProperty("refers")
private Map<String, List<Object>> refers;
@JsonProperty("relates")
private Map<String, List<Object>> relates;
private TUserRole superior;
public TUserRole getSuperior() {
return superior;
}
public TUserRoleVO(TUserRole superior){
this.superior = superior;
this.includes = new HashMap<>();
this.refers = new HashMap<>();
this.relates = new HashMap<>();
}
public void setSuperior(TUserRole superior) {
this.superior = superior;
}
public void setIncludes(Map<String, Object>includes){
this.includes = includes;
}
public Map<String, Object> getIncludes(){
return this.includes;
}
public void setRefers(Map<String, List<Object>> refers){
this.refers = refers;
}
public Map<String, List<Object>> getRefers(){
return this.refers;
}
public void setRelates(Map<String, List<Object>> relates){
this.relates = relates;
}
public Map<String, List<Object>> getRelates(){
return this.relates;
}
}
package com.haomostudio.delivery.vo;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.haomostudio.delivery.po.User;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
public class UserVO{
@JsonProperty("includes")
private Map<String, Object> includes;
@JsonProperty("refers")
private Map<String, List<Object>> refers;
@JsonProperty("relates")
private Map<String, List<Object>> relates;
private User superior;
public User getSuperior() {
return superior;
}
public UserVO(User superior){
this.superior = superior;
this.includes = new HashMap<>();
this.refers = new HashMap<>();
this.relates = new HashMap<>();
}
public void setSuperior(User superior) {
this.superior = superior;
}
public void setIncludes(Map<String, Object>includes){
this.includes = includes;
}
public Map<String, Object> getIncludes(){
return this.includes;
}
public void setRefers(Map<String, List<Object>> refers){
this.refers = refers;
}
public Map<String, List<Object>> getRefers(){
return this.refers;
}
public void setRelates(Map<String, List<Object>> relates){
this.relates = relates;
}
public Map<String, List<Object>> getRelates(){
return this.relates;
}
}
#!/usr/bin/env bash
mvn mybatis-generator:generate -pl web
This diff is collapsed.
#!/bin/bash
cd domain/src/main/java/com/haomostudio/SeekTruthBackend/po/
perl -p -i -e "public Criteria fieldsValuesOr( List<String> fields,List<String> values, String column){
addCriterion(Util.dealFieldsValuesDataBaseOR(fields,values,column));
return (Criteria) this;
}" *Example.java
\ No newline at end of file
This diff is collapsed.
This diff is collapsed.
......@@ -4,6 +4,6 @@
jdbc.driverClassName=oracle.jdbc.driver.OracleDriver
jdbc.url=jdbc:oracle:thin:@localhost:1521:orcl
jdbc.username=root
jdbc.password=123456
jdbc.password=root
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment