feature/jp-0331 #526

Open
jungpyo2001 wants to merge 998 commits from feature/jp-0331 into main
Showing only changes of commit 23f70b21d1 - Show all commits

View File

@ -0,0 +1,27 @@
package com.interplug.qcast.biz.master.dto.quotation;
import io.swagger.v3.oas.annotations.media.Schema;
import jakarta.validation.constraints.NotNull;
import lombok.Getter;
import lombok.Setter;
@Getter
@Setter
@Schema(description = "Api 견적서 오류 저장 요청 객체")
public class ApiQuotationErrSaveRequest {
@Schema(description = "물건번호")
@NotNull
public String objectNo;
@Schema(description = "플랜번호")
@NotNull
public String planNo;
@Schema(description = "오류 사유")
public String rejectRsn;
@Schema(description = "등록자 ID")
@NotNull
public String regId;
}