errSave api 추가 #446
@ -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;
|
||||||
|
}
|
||||||
Loading…
x
Reference in New Issue
Block a user