183
社区成员




The Link Your Class | https://bbs.csdn.net/forums/MUEE308FZ |
---|---|
The Link of Requirement of This Assignment | https://bbs.csdn.net/topics/603251839 |
The requirements for this assignment | Alpha Sprint |
Leader's Name, MU ID and FZU ID | 19105495 & 831901322 Shuo Qiu |
Member1's Name, MU ID and FZU ID | 19105461 & 831901312 Shuqiang Wei |
Member2's Name, MU ID and FZU ID | 19104391 & 831901323 Haiting Luo |
Member3's Name, MU ID and FZU ID | 19105002 & 831901310 Yifan Zhou |
Member4's Name, MU ID and FZU ID | 19104987 & 831901324 Xuetong Liu |
Name | Completed Task | Completion Time | Remaining Time | Problem Encountered | Solution |
---|---|---|---|---|---|
Shuo Qiu | Test classes are written and data is returned | 5H | 5 Days | The same parameter type as the data type in the table was not found | The parameter types in the table are consistent with the input parameter types |
Shuqiang Wei | Main interface to create a library, then jump to create a library, the successful creation will jump back to the main interface | 5.5H | 5 Days | project start slowly | The package of small program code does not necessarily need to be one, it can be divided into several subcontracts according to the function |
Yifan Zhou | Test classes are written and data is returned | 5H | 5 Days | The same parameter type as the data type in the table was not found | The parameter types in the table are consistent with the input parameter types |
Haiting Luo | Main interface to create a library, then jump to create a library, the successful creation will jump back to the main interface | 5.5H | 5 Days | project start slowly | The package of small program code does not necessarily need to be one, it can be divided into several subcontracts according to the function |
Xuetong Liu | Improving interface Functions and design the PPT of presentation | 6H | 5 Days | Interface not available | Find a way to make the interface work |
The complete code for the test class is shown below:
package com.example.test;
import com.example.test.bean.UserBean;
import com.example.test.service.UserService;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.junit4.SpringRunner;
@RunWith(SpringRunner.class)
@SpringBootTest
public class TestApplicationTests {
@Autowired
UserService userService;
@Test
public void contextLoads() {
UserBean userBean = userService.loginIn("a","a");
System.out.println("该用户ID为:");
System.out.println(userBean.getId());
}
}
Today we implemented the edit library function
member | contribution |
---|---|
Shuo Qiu | 20% |
Shuqiang Wei | 20% |
Yifan Zhou | 20% |
Haiting Luo | 20% |
Xuetong Liu | 20% |
Class Diagram
Use Case Diagram
State Diagram
Sequence Diagram
Activity Diagram