feat: 업체조회시 대표자 검색조건에 추가

dev
Jonguk. Lim 4 months ago
parent 1b9c04a100
commit a2113dea88

@ -197,7 +197,7 @@ public class BizNimsServiceBean extends AbstractServiceBean implements BizNimsSe
if(isEmpty(reqDto.getK())){
reqDto.setK(getApiInfInfo(reqDto.getUserId()).get("apiKey"));
}
reqDto.setFg("1"); // 제조번호 또는 일련번호 구분(1-제조번호, 2-일련번호, 3-바코드/RFID)
//reqDto.setFg("1"); // 제조번호 또는 일련번호 구분(1-제조번호, 2-일련번호, 3-바코드/RFID)
reqDto.setPg("1"); // 조회페이지
NimsApiResult.Response<NimsApiDto.MnfSeqInfo> response = infNimsService.getMnfSeqInfo(reqDto);

@ -340,12 +340,12 @@ public class NimsApiRequest {
/**
*
*/
@Schema(requiredMode = REQUIRED, title = "인증키", description = "인증키", example = " ")
@Schema(requiredMode = REQUIRED, title = "인증키", description = "인증키", example = "1d6646562470902a61fc334c83a249cdcc5dc753426942138ee04342e66c8128")
@NotEmpty(message = "인증키는 필수 입니다")
private String k;
/**
* :
*
* 1-, 2-, 3-/RFID
*/
@Schema(requiredMode = REQUIRED, title = "제조번호 또는 일련번호 구분", description = "제조번호 또는 일련번호 구분(1-제조번호, 2-일련번호, 3-바코드/RFID)", example = "1", allowableValues = {"1", "2", "3"})
@ -364,7 +364,7 @@ public class NimsApiRequest {
* (like )
* (pg) 3
*/
@Schema(requiredMode = REQUIRED, title = "제품코드", description = "제품코드", example = "8806718050823")
@Schema(requiredMode = REQUIRED, title = "제품코드", description = "제품코드", example = "8806416011232")
@Pattern(regexp = "[0-9]{13}", message = "제품코드는 필수 입니다(13자리)")
private String p;
@ -381,7 +381,7 @@ public class NimsApiRequest {
* : like - ->
*/
@Schema(title = "번호일부 검색", description = "번호 일부 검색(like)", example = " ")
@Pattern(regexp = "^$|[0-9]{5,}", message = "제품코드를 5자이상 입력해주세요(제품코드는 13자리)")
@Pattern(regexp = "^$|[A-Z0-9]{5,}", message = "번호를 5자이상 입력해주세요")
private String t = StringUtils.EMPTY;
/**

Loading…
Cancel
Save