배치면기본설정 컬럼 명/타입 변경
This commit is contained in:
parent
d7f6c7a320
commit
cc6ed2ea43
@ -12,11 +12,11 @@ public class RoofMaterialsAddInfo {
|
|||||||
private String objectNo; //견적서 번호
|
private String objectNo; //견적서 번호
|
||||||
private boolean roofApply; //적용
|
private boolean roofApply; //적용
|
||||||
private int roofSeq; //순번 SEQ
|
private int roofSeq; //순번 SEQ
|
||||||
private int roofType; //타입
|
private String roofMatlCd; //타입
|
||||||
private int roofWidth; //넓이
|
private int roofWidth; //넓이
|
||||||
private int roofHeight; //높이
|
private int roofHeight; //높이
|
||||||
private int roofHajebichi; //하제비치
|
private int roofHajebichi; //하제비치
|
||||||
private int roofGap; //간격
|
private String roofGap; //간격
|
||||||
private String roofLayout; //방식
|
private String roofLayout; //방식
|
||||||
private Date registDatetime; //생성일시
|
private Date registDatetime; //생성일시
|
||||||
private Date lastEditDatetime; //수정일시
|
private Date lastEditDatetime; //수정일시
|
||||||
|
|||||||
@ -102,15 +102,15 @@ public class MasterController {
|
|||||||
|
|
||||||
if (moduleTpCd == null || moduleTpCd.trim().isEmpty() ||
|
if (moduleTpCd == null || moduleTpCd.trim().isEmpty() ||
|
||||||
roofMatlCd == null || roofMatlCd.trim().isEmpty() ||
|
roofMatlCd == null || roofMatlCd.trim().isEmpty() ||
|
||||||
trestleMkrCd == null || trestleMkrCd.trim().isEmpty() ||
|
trestleMkrCd == null || trestleMkrCd.trim().isEmpty() ||
|
||||||
constMthdCd == null || constMthdCd.trim().isEmpty() ||
|
constMthdCd == null || constMthdCd.trim().isEmpty() ||
|
||||||
roofBaseCd == null || roofBaseCd.trim().isEmpty() ||
|
roofBaseCd == null || roofBaseCd.trim().isEmpty() ||
|
||||||
illuminationTp == null || illuminationTp.trim().isEmpty() ||
|
illuminationTp == null || illuminationTp.trim().isEmpty() ||
|
||||||
instHt == null || instHt.trim().isEmpty() ||
|
instHt == null || instHt.trim().isEmpty() ||
|
||||||
stdWindSpeed == null || stdWindSpeed.trim().isEmpty() ||
|
stdWindSpeed == null || stdWindSpeed.trim().isEmpty() ||
|
||||||
stdSnowLd == null || stdSnowLd.trim().isEmpty() ||
|
stdSnowLd == null || stdSnowLd.trim().isEmpty() ||
|
||||||
inclCd == null || inclCd.trim().isEmpty() ||
|
inclCd == null || inclCd.trim().isEmpty() ||
|
||||||
constTp == null || constTp.trim().isEmpty()) {
|
constTp == null || constTp.trim().isEmpty()) {
|
||||||
throw new QcastException(ErrorCode.INVALID_INPUT_VALUE);
|
throw new QcastException(ErrorCode.INVALID_INPUT_VALUE);
|
||||||
}
|
}
|
||||||
return masterService.getTrestleDetailList(moduleTpCd, roofMatlCd, trestleMkrCd, constMthdCd, roofBaseCd, illuminationTp, instHt, stdWindSpeed, stdSnowLd, inclCd, constTp, mixMatlNo, roofPitch);
|
return masterService.getTrestleDetailList(moduleTpCd, roofMatlCd, trestleMkrCd, constMthdCd, roofBaseCd, illuminationTp, instHt, stdWindSpeed, stdSnowLd, inclCd, constTp, mixMatlNo, roofPitch);
|
||||||
|
|||||||
@ -11,7 +11,7 @@
|
|||||||
, cbs.roof_angle_set
|
, cbs.roof_angle_set
|
||||||
, crma.roof_apply
|
, crma.roof_apply
|
||||||
, crma.roof_seq
|
, crma.roof_seq
|
||||||
, crma.roof_type
|
, crma.roof_matl_cd
|
||||||
, crma.roof_width
|
, crma.roof_width
|
||||||
, crma.roof_height
|
, crma.roof_height
|
||||||
, crma.roof_hajebichi
|
, crma.roof_hajebichi
|
||||||
@ -59,7 +59,7 @@
|
|||||||
object_no
|
object_no
|
||||||
, roof_apply
|
, roof_apply
|
||||||
, roof_seq
|
, roof_seq
|
||||||
, roof_type
|
, roof_matl_cd
|
||||||
, roof_width
|
, roof_width
|
||||||
, roof_height
|
, roof_height
|
||||||
, roof_hajebichi
|
, roof_hajebichi
|
||||||
@ -72,7 +72,7 @@
|
|||||||
#{objectNo}
|
#{objectNo}
|
||||||
, #{roofApply}
|
, #{roofApply}
|
||||||
, #{roofSeq}
|
, #{roofSeq}
|
||||||
, #{roofType}
|
, #{roofMatlCd}
|
||||||
, #{roofWidth}
|
, #{roofWidth}
|
||||||
, #{roofHeight}
|
, #{roofHeight}
|
||||||
, #{roofHajebichi}
|
, #{roofHajebichi}
|
||||||
@ -86,7 +86,8 @@
|
|||||||
<delete id="deleteRoofMaterialsAdd" parameterType="string">
|
<delete id="deleteRoofMaterialsAdd" parameterType="string">
|
||||||
/* sqlid : com.interplug.qcast.canvasBasicSetting.deleteRoofMaterialsAdd Canvas 지붕재추가 Setting 삭제 */
|
/* sqlid : com.interplug.qcast.canvasBasicSetting.deleteRoofMaterialsAdd Canvas 지붕재추가 Setting 삭제 */
|
||||||
DELETE FROM TB_CANVAS_ROOF_MATERIALS_ADD
|
DELETE FROM TB_CANVAS_ROOF_MATERIALS_ADD
|
||||||
WHERE object_no = #{objectNo}
|
WHERE object_no = #{objectNo}
|
||||||
|
AND roof_seq = 1
|
||||||
</delete>
|
</delete>
|
||||||
|
|
||||||
</mapper>
|
</mapper>
|
||||||
Loading…
x
Reference in New Issue
Block a user