53 lines
1.2 KiB
Java
53 lines
1.2 KiB
Java
package com.interplug.qcast.biz.master;
|
|
|
|
import io.swagger.v3.oas.annotations.media.Schema;
|
|
import lombok.Builder;
|
|
import lombok.Getter;
|
|
import lombok.Setter;
|
|
|
|
@Getter
|
|
@Setter
|
|
@Builder
|
|
@Schema(description = "Api 가대 상세 조회 요청 객체 빌더")
|
|
public class ApiTrestleDetailBuilder {
|
|
|
|
@Schema(description = "모듈타입코드")
|
|
private String moduleTpCd;
|
|
|
|
@Schema(description = "지붕재코드")
|
|
private String roofMatlCd;
|
|
|
|
@Schema(description = "가대메이커코드")
|
|
private String trestleMkrCd;
|
|
|
|
@Schema(description = "공법코드")
|
|
private String constMthdCd;
|
|
|
|
@Schema(description = "지붕기초코드")
|
|
private String roofBaseCd;
|
|
|
|
@Schema(description = "면조도")
|
|
private String illuminationTp;
|
|
|
|
@Schema(description = "설치높이")
|
|
private String instHt;
|
|
|
|
@Schema(description = "풍속")
|
|
private String stdWindSpeed;
|
|
|
|
@Schema(description = "적설량")
|
|
private String stdSnowLd;
|
|
|
|
@Schema(description = "경사도코드")
|
|
private String inclCd;
|
|
|
|
@Schema(description = "시공법")
|
|
private String constTp;
|
|
|
|
@Schema(description = "혼합모듈번호")
|
|
private Integer mixMatlNo;
|
|
|
|
@Schema(description = "하제(망둥어)피치")
|
|
private Integer roofPitch;
|
|
}
|