Skip to content

Commit

Permalink
#30 Fix: boolean 값 제대로 반환되도록 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
diddnwjd committed Mar 11, 2024
1 parent 434204a commit d854037
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/main/resources/mapper/popup-mapper.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,11 @@
<result property="notice" column="notice" />
<result property="storeUrl" column="storeUrl" />
<result property="snsUrl" column="snsUrl" />
<result property="parking" column="parking" jdbcType="BIT" javaType="boolean"/>
<result property="fee" column="fee" jdbcType="BIT" javaType="boolean"/>
<result property="noKids" column="noKids" jdbcType="BIT" javaType="boolean"/>
<result property="pet" column="pet" jdbcType="BIT" javaType="boolean"/>
<result property="wifi" column="wifi" jdbcType="BIT" javaType="boolean"/>

<association property="store" javaType="Store" resultMap="storeResult"/>
<association property="admin" javaType="Admin" resultMap="adminResult"/>
Expand Down

0 comments on commit d854037

Please sign in to comment.