유저 post api

8080**/users**

reqeust

{
	"email" : "seod@gmdela",
	"name" : "업보",
	"kakaoId" : "djiesicis",
	"naverToken": null,
	"googleToken": null
}

response

: db에 위의 값들이 잘 저장되면

{
	"message" : "유저 테이블에 추가되었습니다."
}

: db에 값들이 저장이 안되면

{
	"message" : "유저 추가가 안되었습니다."
}

영수증 테이블

엔티티는 아래와 같이 만들기!!

receiptId pk, autho, int
userId long
tripId long
title varchar
productName varchar
price long
quantity int
tax int

영수증 post api

8080/receipt

. Request

{
  "userId": 123456,
  "tripId": 789,
	"spentAmount" : "예은이에게 400엔 줘야됨",
	"remainingAmount " : "가윤이에게 300엔 받기",
  "items": [
    {
      "productName": "Trekking Poles",
      "price": 35.99,
      "quantity": 2
    },
    {
      "productName": "Sleeping Bag",
      "price": 89.99,
      "quantity": 1,
    }
  ]
}

2. Response