Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
yd-backend
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
AutogeneralShanghai
yd-backend
Commits
87108f78
Commit
87108f78
authored
May 06, 2020
by
yao.xiao
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/dev' into dev_20200428_bulkLeads
parents
7ba78923
19d6843f
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
3 additions
and
77 deletions
+3
-77
README.md
+1
-0
readd.txt
+0
-0
yd-api/src/main/java/com/yd/rmi/tencent/wechat/vo/WxConfigRequestVO.java
+1
-1
yd-api/src/main/java/com/yd/rmi/tencent/wechat/vo/WxConfigResponseVO.java
+1
-1
yd-api/src/main/resources/db/user.sql
+0
-39
yd-api/src/main/resources/db/user_info.sql
+0
-36
No files found.
README.md
View file @
87108f78
fsdf
readd.txt
0 → 100644
View file @
87108f78
yd-api/src/main/java/com/yd/rmi/tencent/wechat/vo/WxConfigRequestVO.java
View file @
87108f78
package
com
.
yd
.
api
.
wechat
.
vo
;
package
com
.
yd
.
rmi
.
tencent
.
wechat
.
vo
;
public
class
WxConfigRequestVO
{
public
class
WxConfigRequestVO
{
private
String
url
;
private
String
url
;
...
...
yd-api/src/main/java/com/yd/rmi/tencent/wechat/vo/WxConfigResponseVO.java
View file @
87108f78
package
com
.
yd
.
api
.
wechat
.
vo
;
package
com
.
yd
.
rmi
.
tencent
.
wechat
.
vo
;
public
class
WxConfigResponseVO
{
public
class
WxConfigResponseVO
{
private
String
appId
;
// 必填,公众号的唯一标识
private
String
appId
;
// 必填,公众号的唯一标识
...
...
yd-api/src/main/resources/db/user.sql
deleted
100644 → 0
View file @
7ba78923
/*
Navicat Premium Data Transfer
Source Server : 本地库
Source Server Type : MySQL
Source Server Version : 50720
Source Host : localhost:3306
Source Schema : db_master
Target Server Type : MySQL
Target Server Version : 50720
File Encoding : 65001
Date: 19/01/2018 18:38:11
*/
SET
NAMES
utf8mb4
;
SET
FOREIGN_KEY_CHECKS
=
0
;
-- ----------------------------
-- Table structure for user
-- ----------------------------
DROP
TABLE
IF
EXISTS
`user`
;
CREATE
TABLE
`user`
(
`id`
int
(
11
)
NOT
NULL
AUTO_INCREMENT
,
`username`
varchar
(
512
)
CHARACTER
SET
utf8
COLLATE
utf8_general_ci
NOT
NULL
,
`password`
varchar
(
512
)
CHARACTER
SET
utf8
COLLATE
utf8_general_ci
NOT
NULL
,
`create_time`
datetime
(
0
)
NOT
NULL
,
`update_time`
datetime
(
0
)
DEFAULT
NULL
,
PRIMARY
KEY
(
`id`
)
USING
BTREE
)
ENGINE
=
InnoDB
AUTO_INCREMENT
=
1002
CHARACTER
SET
=
utf8
COLLATE
=
utf8_general_ci
ROW_FORMAT
=
Dynamic
;
-- ----------------------------
-- Records of user
-- ----------------------------
INSERT
INTO
`user`
VALUES
(
1000
,
'admin'
,
'admin'
,
'2018-01-19 16:43:38'
,
'2018-01-19 16:43:40'
);
INSERT
INTO
`user`
VALUES
(
1001
,
'rocliu'
,
'rocliu'
,
'2018-01-19 16:43:58'
,
'2018-01-19 16:44:00'
);
SET
FOREIGN_KEY_CHECKS
=
1
;
yd-api/src/main/resources/db/user_info.sql
deleted
100644 → 0
View file @
7ba78923
/*
Navicat Premium Data Transfer
Source Server : 本地库
Source Server Type : MySQL
Source Server Version : 50720
Source Host : localhost:3306
Source Schema : db_other
Target Server Type : MySQL
Target Server Version : 50720
File Encoding : 65001
Date: 19/01/2018 18:38:18
*/
SET
NAMES
utf8mb4
;
SET
FOREIGN_KEY_CHECKS
=
0
;
-- ----------------------------
-- Table structure for user_info
-- ----------------------------
DROP
TABLE
IF
EXISTS
`user_info`
;
CREATE
TABLE
`user_info`
(
`id`
int
(
11
)
NOT
NULL
AUTO_INCREMENT
,
`name`
varchar
(
255
)
CHARACTER
SET
utf8
COLLATE
utf8_general_ci
DEFAULT
NULL
,
`email`
varchar
(
255
)
CHARACTER
SET
utf8
COLLATE
utf8_general_ci
DEFAULT
NULL
,
PRIMARY
KEY
(
`id`
)
USING
BTREE
)
ENGINE
=
InnoDB
AUTO_INCREMENT
=
1001
CHARACTER
SET
=
utf8
COLLATE
=
utf8_general_ci
ROW_FORMAT
=
Dynamic
;
-- ----------------------------
-- Records of user_info
-- ----------------------------
INSERT
INTO
`user_info`
VALUES
(
1000
,
'admin'
,
'admin@apedad.com'
);
SET
FOREIGN_KEY_CHECKS
=
1
;
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment