主页 项目地址
API系列
API-映射表 API文档-用户部分 API文档-留言板 API文档-微精弘
工程与部署
MySql文档 部署
杂项
&数据(调试用) 第三方提供的API
日志
更新日志
想法&开发者提示
留言板 开发规范
mysql语句
常用Sql语句
alter table $表名 add $列名 $描述
alter table userinfo drop column portrait;
alter table msgboard add column updatetime text;
alter table msgboard add column mark int not null;
insert into userinfo (username,permission_msgboard,jhpid,pwbind_jh,state_jh,pwbind_lib,state_lib,pwbind_card,state_card,pwbind_ycedu,state_ycedu,pwbind_zfedu,state_zfedu,portrait,email,phone,linkedcourse) values ('10088',2,'','',0,'',0,'',0,'',0,'',0,'','','','');
数据库
配置
mssql
将文档中所有MySqlUtil
换成SqlUtil
。
注意,因为
MySqlUtil
和SqlUtil
依赖的类并不相同,所以创建了两个类,以适配数据库,但是两种数据库的语法是相同的。
修改appsettings.json
中的ConnectionStrings
为
{
"wejhplatform":"Data Source=(localdb)\MSSQLLocalDB;Initial Catalog=wejhplatform;Integrated Security=True;Connect Timeout=30;Encrypt=False;TrustServerCertificate=False;ApplicationIntent=ReadWrite;MultiSubnetFailover=False"
}
mysql
导入NuGet
包MySQL.Data
。
将文档中所有SqlUtil
换成MySqlUtil
。
修改appsettings.json
中的ConnectionStrings
为
{
"wejhplatform":"server=localhost;userid=root;password=123456;database=wejhplatform;"
}
架构
{
"name":"ttyplatform",
"tables":[
"usercredit",
"userinfo",
"msgboard",
"course",
]
}
create database
create database ttyplatform;
use ttyplatform;
用户凭证模块
架构
{
"name": "usercredit",
"table":{
"id": "int not null AUTO_INCREMENT",
"username":"text not null",
//已加密
"nickname":"text not null",
//已加密
"password":"text not null",
"usertype":"text not null",//COMMON,TEST,WEJH
//已加密
"web_credit":"text",
//已加密
"mobile_credit":"text",
//已加密
"pc_credit":"text"
},
"primarykey":"id"
}
create table
mysql
create table usercredit(
id int not null AUTO_INCREMENT,
username text not null,
nickname text not null,
password text not null,
usertype text not null,
web_credit text,
mobile_credit text,
pc_credit text,
PRIMARY KEY (id)
);
用户信息模块
架构
{
"name":"userinfo",
"table":
{
"id":"int not null AUTO_INCREMENT",
"username":"text not null",
//bind_info
//已加密
"jhpid":"text",
//已加密
"pwbind_jh":"text",
"state_jh":"int",
//已加密
"pwbind_lib":"text",
"state_lib":"int",
//已加密
"pwbind_card":"text",
"state_card":"int",
//已加密
"pwbind_ycedu":"text",
"state_ycedu":"int",
//已加密
"pwbind_zfedu":"text",
"state_zfedu":"int",
//infos
//"portrait":"text",//用户头像,默认值为"default::unset.jpg"
//已加密
"email":"text",
//已加密
"phone":"text",
"permission_msgboard":"int", //msgboard权限
"linkedcourse":"text", //链接键,用|分割. $based list<string>
},
"primarykey":"id"
}
create table
mysql
create table userinfo(
id int not null AUTO_INCREMENT,
username text not null,
jhpid text not null,
pwbind_jh text not null,
state_jh int not null,
pwbind_lib text,
state_lib int not null,
pwbind_card text,
state_card int not null,
pwbind_ycedu text,
state_ycedu int not null,
pwbind_zfedu text,
state_zfedu int not null,
email text,
phone text,
permission_msgboard int not null,
linkedcourse text,
PRIMARY KEY (id)
);
留言系统模块
架构
{
"name":"msgboard",
"table":
{
"id":"int not null AUTO_INCREMENT",
"username":"text not null",
"time":"text not null",
"istop":"int not null",
"islocked":"int not null",
"updatetime":"text",
"content":"text",
"mark":"int not null",
"commentlastid":"int not null",
"comments":"text",
"pic":"MediumBlob"
},
"primarykey":"id"
}
credit table
create table msgboard(
id int not null AUTO_INCREMENT,
mark int not null,
username text not null,
time text not null,
istop int not null,
islocked int not null,
updatetime text,
commentlastid int not null,
content text,
comments text,
pic MediumBlob,
PRIMARY KEY(id)
);
教务系统模块
架构
{
"name":"course",
"table":
{
"id":"int not null AUTO_INCREMENT",
//三大查询标识
"courseid":"text not null", //课程的id
"year":"int not null", //上课学年
"term":"int not null", //上课学期(3为上学期,12为下学期,16为下学期)
"name":"text",//课程名称
"college":"text", //开课学院
"type":"text",
"teacher": "text",//教师名称
"campus":"text", //校区名称
"location":"text", //地点
"weekrange":"text",//上课周数{1-16}表示第1~16周
"dayofweek":"text", //星期几{0=Sunday,1=Monday...}
"timerange":"text",//时间{1-3}表示第1~3节
"classscore":"int", //学分
"classhour":"int" //学时
},
"primarykey":"id"
}
create table
create table course(
id int not null AUTO_INCREMENT,
courseid text not null,
year int not null,
term int not null,
name text,
college text,
type text,
teacher text,
campus text,
location text,
weekrange text,
dayofweek text,
timerange text,
classscore int,
classhour int,
PRIMARY KEY (id)
);
courseid生成方式
year + term + name + location + weekrange + dayofweek + timerange 取hashcode