Skip to content

Instantly share code, notes, and snippets.

@teocci
Last active December 25, 2022 02:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save teocci/2afb63e63ddc00fd5b69adc2592d2377 to your computer and use it in GitHub Desktop.
Save teocci/2afb63e63ddc00fd5b69adc2592d2377 to your computer and use it in GitHub Desktop.

TODO List

  1. stats : {}

  2. orderDTOList -> history,

  3. chagne user stationList result format

    • 192.168.100.58:9090/api/v1/stations/kuser last 3
    • 192.168.100.58:9090/api/v1/station/4 all
  4. Add TODOS

    • ADMIN does not have stations
    • Remove registration of 3 default stations at the registration
  5. fix bugs like:

// Req: 192.168.150.12:9090/api/v1/user/kuser
{
	"timestamp": "2022-12-23T13:12:32.160+00:00",
	"status": 500,
	"error": "Internal Server Error",
	"path": "/api/v1/user/kuser"
}
// Req: 192.168.150.12:9090/api/v1/user/raw
{
    "id" : 6,
    "hash" : "1b2c13dada97538f54affc13d35515aaf7639f24"
}
{
	"timestamp": "2022-12-24T08:31:26.703+00:00",
	"status": 500,
	"error": "Internal Server Error",
	"path": "/api/v1/user/raw"
}
  1. modify user/raw request
public class UserRawReqDTO {
    private String username = null;
    private Long id = null;
    private String hash;
}
  1. put status 0 : default
  2. change json key name. locationDTOList -> locations
  3. [x]192.168.150.12:9090/api/v1/user/kuser 리턴할떄, id 포함해서 주기
  4. 192.168.150.12:9090/api/v1/user/verify 리턴할때, result에 id 포함해서
  5. /user/raw 부분 서버에 적용안되있음, 150.12에 deploy
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment