랜드경매 예약종료일 제거
This commit is contained in:
@@ -37,9 +37,6 @@ public class LandAuction {
|
|||||||
// 예약 시작 시간
|
// 예약 시작 시간
|
||||||
@JsonProperty("resv_start_dt")
|
@JsonProperty("resv_start_dt")
|
||||||
private LocalDateTime resvStartDt;
|
private LocalDateTime resvStartDt;
|
||||||
// 예약 종료 시간
|
|
||||||
@JsonProperty("resv_end_dt")
|
|
||||||
private LocalDateTime resvEndDt;
|
|
||||||
// 경매 시작 시간
|
// 경매 시작 시간
|
||||||
@JsonProperty("auction_start_dt")
|
@JsonProperty("auction_start_dt")
|
||||||
private LocalDateTime auctionStartDt;
|
private LocalDateTime auctionStartDt;
|
||||||
|
|||||||
@@ -33,9 +33,6 @@ public class LandRequest {
|
|||||||
// 예약 시작 시간
|
// 예약 시작 시간
|
||||||
@JsonProperty("resv_start_dt")
|
@JsonProperty("resv_start_dt")
|
||||||
private LocalDateTime resvStartDt;
|
private LocalDateTime resvStartDt;
|
||||||
// 예약 종료 시간
|
|
||||||
@JsonProperty("resv_end_dt")
|
|
||||||
private LocalDateTime resvEndDt;
|
|
||||||
// 경매 시작 시간
|
// 경매 시작 시간
|
||||||
@JsonProperty("auction_start_dt")
|
@JsonProperty("auction_start_dt")
|
||||||
private LocalDateTime auctionStartDt;
|
private LocalDateTime auctionStartDt;
|
||||||
|
|||||||
@@ -11,7 +11,6 @@
|
|||||||
<result property="auctionSeq" column="auction_seq"/>
|
<result property="auctionSeq" column="auction_seq"/>
|
||||||
<result property="status" column="status"/>
|
<result property="status" column="status"/>
|
||||||
<result property="resvStartDt" column="resv_start_dt"/>
|
<result property="resvStartDt" column="resv_start_dt"/>
|
||||||
<result property="resvEndDt" column="resv_end_dt"/>
|
|
||||||
<result property="auctionStartDt" column="auction_start_dt"/>
|
<result property="auctionStartDt" column="auction_start_dt"/>
|
||||||
<result property="auctionEndDt" column="auction_end_dt"/>
|
<result property="auctionEndDt" column="auction_end_dt"/>
|
||||||
<result property="currencyType" column="currency_type"/>
|
<result property="currencyType" column="currency_type"/>
|
||||||
@@ -58,7 +57,6 @@
|
|||||||
, a.auction_seq
|
, a.auction_seq
|
||||||
, a.status
|
, a.status
|
||||||
, a.resv_start_dt
|
, a.resv_start_dt
|
||||||
, a.resv_end_dt
|
|
||||||
, a.auction_start_dt
|
, a.auction_start_dt
|
||||||
, a.auction_end_dt
|
, a.auction_end_dt
|
||||||
, a.currency_type
|
, a.currency_type
|
||||||
@@ -205,7 +203,6 @@
|
|||||||
, a.auction_seq
|
, a.auction_seq
|
||||||
, a.status
|
, a.status
|
||||||
, a.resv_start_dt
|
, a.resv_start_dt
|
||||||
, a.resv_end_dt
|
|
||||||
, a.auction_start_dt
|
, a.auction_start_dt
|
||||||
, a.auction_end_dt
|
, a.auction_end_dt
|
||||||
, a.currency_type
|
, a.currency_type
|
||||||
@@ -256,8 +253,8 @@
|
|||||||
|
|
||||||
<!--랜드경매 저장-->
|
<!--랜드경매 저장-->
|
||||||
<insert id="postLandAuction" parameterType="com.caliverse.admin.domain.request.LandRequest" useGeneratedKeys="true" keyProperty="id">
|
<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)
|
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}, #{resvEndDt}, #{auctionStartDt}, #{auctionEndDt}, #{currencyType}, #{startPrice}, #{createBy}, #{updateBy})
|
VALUES (#{landId}, #{landName}, #{landSize}, #{landSocket}, #{auctionSeq}, #{resvStartDt}, #{auctionStartDt}, #{auctionEndDt}, #{currencyType}, #{startPrice}, #{createBy}, #{updateBy})
|
||||||
</insert>
|
</insert>
|
||||||
|
|
||||||
<insert id="postLandOwnerChange" parameterType="com.caliverse.admin.domain.request.LandRequest" useGeneratedKeys="true" keyProperty="id">
|
<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 id="updateLandAuction" parameterType="com.caliverse.admin.domain.request.LandRequest">
|
||||||
UPDATE land_auction SET resv_start_dt = #{resvStartDt}
|
UPDATE land_auction SET resv_start_dt = #{resvStartDt}
|
||||||
, resv_end_dt = #{resvEndDt}
|
|
||||||
, auction_start_dt = #{auctionStartDt}
|
, auction_start_dt = #{auctionStartDt}
|
||||||
, auction_end_dt = #{auctionEndDt}
|
, auction_end_dt = #{auctionEndDt}
|
||||||
, currency_type = #{currencyType}
|
, currency_type = #{currencyType}
|
||||||
@@ -333,7 +329,6 @@
|
|||||||
, auction_seq
|
, auction_seq
|
||||||
, status
|
, status
|
||||||
, resv_start_dt
|
, resv_start_dt
|
||||||
, resv_end_dt
|
|
||||||
, auction_start_dt
|
, auction_start_dt
|
||||||
, auction_end_dt
|
, auction_end_dt
|
||||||
, currency_type
|
, currency_type
|
||||||
|
|||||||
Reference in New Issue
Block a user