dev #450

Merged
ysCha merged 6 commits from dev into prd-deploy 2026-04-01 13:13:06 +09:00
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;
}