Skip to content

Commit e1279aa

Browse files
Update adminController.java
Remove chines comments
1 parent f49723c commit e1279aa

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

code/backend/src/main/java/edu/bu/cs673/secondhand/controller/adminController.java

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,11 @@
1818
import javax.validation.constraints.NotEmpty;
1919
import javax.validation.constraints.NotNull;
2020

21+
/***
22+
Email: qyyh@bu.edu,la1993@bu.edu
23+
DateTime: 11/3/24-14:03
24+
*****/
25+
2126
@RestController
2227
@RequestMapping("/admin")
2328
public class adminController {
@@ -212,7 +217,7 @@ public ResultVo updateUserStatus(@CookieValue("adminId")
212217
}
213218

214219

215-
// 按订单闲置物品名称查询
220+
// Select inactive IdelItem
216221
@GetMapping("queryIdle")
217222
public ResultVo queryIdle(@RequestParam(value = "findValue",required = false) String findValue,
218223
@RequestParam(value = "page",required = false) Integer page,
@@ -238,7 +243,7 @@ public ResultVo queryIdle(@RequestParam(value = "findValue",required = false) St
238243

239244
}
240245

241-
// 按订单号查询订单
246+
// Select Oreder by Id
242247
@GetMapping("queryOrder")
243248
public ResultVo queryOrder(@CookieValue("adminId")
244249
@NotNull(message = "Login fail, try again.")
@@ -268,7 +273,7 @@ public ResultVo queryOrder(@CookieValue("adminId")
268273

269274

270275

271-
// 根据用户账号来查找信息
276+
// select idemInfo by account
272277
@GetMapping("queryUser")
273278
public ResultVo queryUser(@CookieValue("adminId")
274279
@NotNull(message = "Login fail, try again.")

0 commit comments

Comments
 (0)