Compare commits
No commits in common. "d95f48aed1fb7b0f7878044d8b0241c4405c3889" and "e988fe1a5a9d389ab58af6ba4fee2f7ad358ac5c" have entirely different histories.
d95f48aed1
...
e988fe1a5a
@ -1,27 +0,0 @@
|
||||
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