Skip to content

Commit

Permalink
[add] #49 약서랍 리스트 가져오기 dto 생성
Browse files Browse the repository at this point in the history
  • Loading branch information
DrRivaski committed Sep 30, 2023
1 parent f75c03b commit 16a665b
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
package com.example.exitmedserver.pill.dto;

import lombok.Data;

import java.util.List;

@Data
public class PillGetDrawerListResponse {
private List<PillGetDrawerListResponseDto> data;
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
package com.example.exitmedserver.pill.dto;

import lombok.Data;

@Data
public class PillGetDrawerListResponseDto {
private Long pillItemSequence;
private String pillName;
private String classification;
private String imageLink;
private boolean isAlarmTurnedOn;
}

0 comments on commit 16a665b

Please sign in to comment.