feat: dashboard 적용
parent
92df0c3c44
commit
fcb79272ad
@ -0,0 +1,38 @@
|
||||
package com.xit.biz.ctgy.dto;
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.AllArgsConstructor;
|
||||
import lombok.Getter;
|
||||
import lombok.NoArgsConstructor;
|
||||
import lombok.Setter;
|
||||
|
||||
import javax.validation.constraints.Size;
|
||||
import java.time.LocalDate;
|
||||
|
||||
@Schema(name = "DashboardJudgeListDto", description = "심사자심의통계대쉬보드")
|
||||
@Getter
|
||||
@Setter
|
||||
@AllArgsConstructor
|
||||
@NoArgsConstructor
|
||||
public class DashboardJudgeListDto {
|
||||
|
||||
@Schema(title = "심사종료일", example = "2022-03-23", description = "심사종료일")
|
||||
@JsonFormat(pattern="yyyy-MM-dd")
|
||||
private LocalDate msEdate;
|
||||
|
||||
@Schema(title = "심사팀코드", example = " ", description = "심사팀코드")
|
||||
private String msuTeam;
|
||||
|
||||
@Schema(title = "심사자이름", example = " ", description = "심사자이름")
|
||||
private String name;
|
||||
|
||||
@Schema(title = "심사완료건수", example = " ", description = "심사완료건수")
|
||||
private Long jcnt;
|
||||
|
||||
@Schema(title = "심사대상건수", example = " ", description = "심사대상건수")
|
||||
private Long tcnt;
|
||||
|
||||
@Schema(title = "데이타구분", example = "1", description = "데이타구분: 1-거주자,2-장애인")
|
||||
private String msDatagb;
|
||||
}
|
Loading…
Reference in New Issue