배치면기본설정 컬럼 명/타입 변경

This commit is contained in:
changkyu choi 2024-12-20 10:22:36 +09:00
parent d7f6c7a320
commit cc6ed2ea43
3 changed files with 16 additions and 15 deletions

View File

@ -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; //수정일시

View File

@ -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}
@ -87,6 +87,7 @@
/* 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>