tlias管理系统-环境搭建
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
package com.inmind;
|
||||
|
||||
import org.springframework.boot.SpringApplication;
|
||||
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
||||
|
||||
@SpringBootApplication
|
||||
public class TliasWebManagementApplication {
|
||||
|
||||
public static void main(String[] args) {
|
||||
SpringApplication.run(TliasWebManagementApplication.class, args);
|
||||
}
|
||||
|
||||
}
|
@@ -0,0 +1,7 @@
|
||||
package com.inmind.controller;
|
||||
|
||||
import org.springframework.web.bind.annotation.RestController;
|
||||
|
||||
@RestController
|
||||
public class DeptController {
|
||||
}
|
@@ -0,0 +1,7 @@
|
||||
package com.inmind.controller;
|
||||
|
||||
import org.springframework.web.bind.annotation.RestController;
|
||||
|
||||
@RestController
|
||||
public class EmpController {
|
||||
}
|
@@ -0,0 +1,7 @@
|
||||
package com.inmind.mapper;
|
||||
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
|
||||
@Mapper
|
||||
public interface DeptMapper {
|
||||
}
|
@@ -0,0 +1,7 @@
|
||||
package com.inmind.mapper;
|
||||
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
|
||||
@Mapper
|
||||
public interface EmpMapper {
|
||||
}
|
19
tlias-web-management/src/main/java/com/inmind/pojo/Dept.java
Normal file
19
tlias-web-management/src/main/java/com/inmind/pojo/Dept.java
Normal file
@@ -0,0 +1,19 @@
|
||||
package com.inmind.pojo;
|
||||
|
||||
import lombok.AllArgsConstructor;
|
||||
import lombok.Data;
|
||||
import lombok.NoArgsConstructor;
|
||||
import java.time.LocalDateTime;
|
||||
|
||||
/**
|
||||
* 部门实体类
|
||||
*/
|
||||
@Data
|
||||
@NoArgsConstructor
|
||||
@AllArgsConstructor
|
||||
public class Dept {
|
||||
private Integer id; //ID
|
||||
private String name; //部门名称
|
||||
private LocalDateTime createTime; //创建时间
|
||||
private LocalDateTime updateTime; //修改时间
|
||||
}
|
27
tlias-web-management/src/main/java/com/inmind/pojo/Emp.java
Normal file
27
tlias-web-management/src/main/java/com/inmind/pojo/Emp.java
Normal file
@@ -0,0 +1,27 @@
|
||||
package com.inmind.pojo;
|
||||
|
||||
import lombok.AllArgsConstructor;
|
||||
import lombok.Data;
|
||||
import lombok.NoArgsConstructor;
|
||||
import java.time.LocalDate;
|
||||
import java.time.LocalDateTime;
|
||||
|
||||
/**
|
||||
* 员工实体类
|
||||
*/
|
||||
@Data
|
||||
@NoArgsConstructor
|
||||
@AllArgsConstructor
|
||||
public class Emp {
|
||||
private Integer id; //ID
|
||||
private String username; //用户名
|
||||
private String password; //密码
|
||||
private String name; //姓名
|
||||
private Short gender; //性别 , 1 男, 2 女
|
||||
private String image; //图像url
|
||||
private Short job; //职位 , 1 班主任 , 2 讲师 , 3 学工主管 , 4 教研主管 , 5 咨询师
|
||||
private LocalDate entrydate; //入职日期
|
||||
private Integer deptId; //部门ID
|
||||
private LocalDateTime createTime; //创建时间
|
||||
private LocalDateTime updateTime; //修改时间
|
||||
}
|
@@ -0,0 +1,4 @@
|
||||
package com.inmind.service;
|
||||
|
||||
public interface DeptService {
|
||||
}
|
@@ -0,0 +1,4 @@
|
||||
package com.inmind.service;
|
||||
|
||||
public interface EmpService {
|
||||
}
|
@@ -0,0 +1,8 @@
|
||||
package com.inmind.service.impl;
|
||||
|
||||
import com.inmind.service.DeptService;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
@Service
|
||||
public class DeptServiceImpl implements DeptService {
|
||||
}
|
@@ -0,0 +1,8 @@
|
||||
package com.inmind.service.impl;
|
||||
|
||||
import com.inmind.service.EmpService;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
@Service
|
||||
public class EmpServiceImpl implements EmpService {
|
||||
}
|
@@ -0,0 +1,22 @@
|
||||
# 应用服务 WEB 访问端口
|
||||
server.port=8080
|
||||
#下面这些内容是为了让MyBatis映射
|
||||
#指定Mybatis的Mapper文件
|
||||
mybatis.mapper-locations=classpath:mappers/*xml
|
||||
#指定Mybatis的实体目录
|
||||
mybatis.type-aliases-package=com.inmind.mybatis.entity
|
||||
|
||||
#驱动类名称
|
||||
spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver
|
||||
#数据库连接的url
|
||||
spring.datasource.url=jdbc:mysql://localhost:3306/tlias1
|
||||
#连接数据库的用户名
|
||||
spring.datasource.username=root
|
||||
#连接数据库的密码
|
||||
spring.datasource.password=1234
|
||||
|
||||
#输出mybatis的日志
|
||||
mybatis.configuration.log-impl=org.apache.ibatis.logging.stdout.StdOutImpl
|
||||
|
||||
#开启mybatis的驼峰命名自动映射开关,将a_time ---->aTime
|
||||
mybatis.configuration.map-underscore-to-camel-case=true
|
@@ -0,0 +1,6 @@
|
||||
<html>
|
||||
<body>
|
||||
<h1>hello word!!!</h1>
|
||||
<p>this is a html page</p>
|
||||
</body>
|
||||
</html>
|
@@ -0,0 +1,13 @@
|
||||
package com.inmind;
|
||||
|
||||
import org.junit.jupiter.api.Test;
|
||||
import org.springframework.boot.test.context.SpringBootTest;
|
||||
|
||||
@SpringBootTest
|
||||
class TliasWebManagementApplicationTests {
|
||||
|
||||
@Test
|
||||
void contextLoads() {
|
||||
}
|
||||
|
||||
}
|
Reference in New Issue
Block a user