랜드경매 예약종료일 제거

This commit is contained in:
2025-08-09 09:47:58 +09:00
parent 11c681e1ad
commit 492394d3a0
3 changed files with 2 additions and 13 deletions

View File

@@ -37,9 +37,6 @@ public class LandAuction {
// 예약 시작 시간
@JsonProperty("resv_start_dt")
private LocalDateTime resvStartDt;
// 예약 종료 시간
@JsonProperty("resv_end_dt")
private LocalDateTime resvEndDt;
// 경매 시작 시간
@JsonProperty("auction_start_dt")
private LocalDateTime auctionStartDt;

View File

@@ -33,9 +33,6 @@ public class LandRequest {
// 예약 시작 시간
@JsonProperty("resv_start_dt")
private LocalDateTime resvStartDt;
// 예약 종료 시간
@JsonProperty("resv_end_dt")
private LocalDateTime resvEndDt;
// 경매 시작 시간
@JsonProperty("auction_start_dt")
private LocalDateTime auctionStartDt;

View File

@@ -11,7 +11,6 @@
<result property="auctionSeq" column="auction_seq"/>
<result property="status" column="status"/>
<result property="resvStartDt" column="resv_start_dt"/>
<result property="resvEndDt" column="resv_end_dt"/>
<result property="auctionStartDt" column="auction_start_dt"/>
<result property="auctionEndDt" column="auction_end_dt"/>
<result property="currencyType" column="currency_type"/>
@@ -58,7 +57,6 @@
, a.auction_seq
, a.status
, a.resv_start_dt
, a.resv_end_dt
, a.auction_start_dt
, a.auction_end_dt
, a.currency_type
@@ -205,7 +203,6 @@
, a.auction_seq
, a.status
, a.resv_start_dt
, a.resv_end_dt
, a.auction_start_dt
, a.auction_end_dt
, a.currency_type
@@ -256,8 +253,8 @@
<!--랜드경매 저장-->
<insert id="postLandAuction" parameterType="com.caliverse.admin.domain.request.LandRequest" useGeneratedKeys="true" keyProperty="id">
INSERT INTO land_auction (land_id, land_name, land_size, land_socket, auction_seq, resv_start_dt, resv_end_dt, auction_start_dt, auction_end_dt, currency_type, start_price, create_by, update_by)
VALUES (#{landId}, #{landName}, #{landSize}, #{landSocket}, #{auctionSeq}, #{resvStartDt}, #{resvEndDt}, #{auctionStartDt}, #{auctionEndDt}, #{currencyType}, #{startPrice}, #{createBy}, #{updateBy})
INSERT INTO land_auction (land_id, land_name, land_size, land_socket, auction_seq, resv_start_dt, auction_start_dt, auction_end_dt, currency_type, start_price, create_by, update_by)
VALUES (#{landId}, #{landName}, #{landSize}, #{landSocket}, #{auctionSeq}, #{resvStartDt}, #{auctionStartDt}, #{auctionEndDt}, #{currencyType}, #{startPrice}, #{createBy}, #{updateBy})
</insert>
<insert id="postLandOwnerChange" parameterType="com.caliverse.admin.domain.request.LandRequest" useGeneratedKeys="true" keyProperty="id">
@@ -268,7 +265,6 @@
<!--랜드경매 수정-->
<update id="updateLandAuction" parameterType="com.caliverse.admin.domain.request.LandRequest">
UPDATE land_auction SET resv_start_dt = #{resvStartDt}
, resv_end_dt = #{resvEndDt}
, auction_start_dt = #{auctionStartDt}
, auction_end_dt = #{auctionEndDt}
, currency_type = #{currencyType}
@@ -333,7 +329,6 @@
, auction_seq
, status
, resv_start_dt
, resv_end_dt
, auction_start_dt
, auction_end_dt
, currency_type