Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gxpt_ht
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
pseer
gxpt_ht
Commits
1692b1e9
Commit
1692b1e9
authored
Jan 16, 2024
by
吕明尚
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
packageid改为packids
parent
9ee905dc
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
17 additions
and
17 deletions
+17
-17
SConsumerCoupon.java
...em/src/main/java/share/system/domain/SConsumerCoupon.java
+2
-2
SCoupon.java
share-system/src/main/java/share/system/domain/SCoupon.java
+2
-2
SConsumerCouponMapper.xml
...rc/main/resources/mapper/system/SConsumerCouponMapper.xml
+6
-6
SCouponMapper.xml
...system/src/main/resources/mapper/system/SCouponMapper.xml
+7
-7
No files found.
share-system/src/main/java/share/system/domain/SConsumerCoupon.java
View file @
1692b1e9
...
...
@@ -123,8 +123,8 @@ public class SConsumerCoupon extends BaseEntity
/**
* 绑定套餐ID
*/
@Excel
(
name
=
"
绑定套餐ID
"
)
private
Long
packageId
;
@Excel
(
name
=
"
适用套餐列表
"
)
private
String
packids
;
/** 平台类型(1:自营,2:美团) */
@Excel
(
name
=
"平台类型(1:自营,2:美团)"
)
...
...
share-system/src/main/java/share/system/domain/SCoupon.java
View file @
1692b1e9
...
...
@@ -92,8 +92,8 @@ public class SCoupon extends BaseEntity
/**
* 绑定套餐ID
*/
@Excel
(
name
=
"
绑定套餐ID
"
)
private
Long
packageId
;
@Excel
(
name
=
"
适用套餐列表
"
)
private
String
packids
;
/**
* 团购ID
...
...
share-system/src/main/resources/mapper/system/SConsumerCouponMapper.xml
View file @
1692b1e9
...
...
@@ -26,7 +26,7 @@
<result
property=
"roomType"
column=
"room_type"
/>
<result
property=
"storeType"
column=
"store_type"
/>
<result
property=
"orderType"
column=
"order_type"
/>
<result
property=
"pack
ageId"
column=
"package_id
"
/>
<result
property=
"pack
ids"
column=
"packids
"
/>
<result
property=
"platformType"
column=
"platform_type"
/>
<result
property=
"startDate"
column=
"start_date"
/>
<result
property=
"endDate"
column=
"end_date"
/>
...
...
@@ -79,7 +79,7 @@
room_type,
store_type,
order_type,
pack
age_id
pack
ids
from s_consumer_coupon
</sql>
...
...
@@ -103,7 +103,7 @@
<if
test=
"sourceType != null and sourceType != ''"
>
and source_type = #{sourceType}
</if>
<if
test=
"platformType != null and platformType != ''"
>
and platform_type = #{platformType}
</if>
<if
test=
"orderType != null and orderType != ''"
>
and order_type = #{orderType}
</if>
<if
test=
"pack
ageId != null "
>
and package_id = #{packageId
}
</if>
<if
test=
"pack
ids != null "
>
and packids = #{packids
}
</if>
<if
test=
"startDate != null "
>
and start_date = #{startDate}
</if>
<if
test=
"endDate != null "
>
and end_date = #{endDate}
</if>
<if
test=
"useDate != null "
>
and use_date = #{useDate}
</if>
...
...
@@ -169,7 +169,7 @@
<if
test=
"roomType != null"
>
room_type,
</if>
<if
test=
"storeType != null"
>
store_type,
</if>
<if
test=
"orderType != null"
>
order_type,
</if>
<if
test=
"pack
ageId != null"
>
package_id
,
</if>
<if
test=
"pack
ids != null"
>
packids
,
</if>
<if
test=
"dealgroupId != null"
>
dealgroup_id,
</if>
<if
test=
"storeIds != null"
>
store_ids,
</if>
</trim>
...
...
@@ -206,7 +206,7 @@
<if
test=
"roomType != null"
>
#{roomType},
</if>
<if
test=
"storeType != null"
>
#{storeType},
</if>
<if
test=
"orderType != null"
>
#{orderType},
</if>
<if
test=
"pack
ageId != null"
>
#{packageId
},
</if>
<if
test=
"pack
ids != null"
>
#{packids
},
</if>
<if
test=
"dealgroupId != null"
>
#{dealgroupId},
</if>
<if
test=
"storeIds != null"
>
#{storeIds},
</if>
</trim>
...
...
@@ -247,7 +247,7 @@
<if
test=
"roomType != null"
>
room_type = #{roomType},
</if>
<if
test=
"storeType != null"
>
store_type = #{storeType},
</if>
<if
test=
"orderType != null"
>
order_type = #{orderType},
</if>
<if
test=
"pack
ageId != null"
>
package_id = #{packageId
},
</if>
<if
test=
"pack
ids != null"
>
packids = #{packids
},
</if>
<if
test=
"dealgroupId != null"
>
dealgroup_id = #{dealgroupId},
</if>
<if
test=
"storeIds != null"
>
store_ids = #{storeIds},
</if>
</trim>
...
...
share-system/src/main/resources/mapper/system/SCouponMapper.xml
View file @
1692b1e9
...
...
@@ -15,7 +15,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<result
property=
"roomType"
column=
"room_type"
/>
<result
property=
"couponType"
column=
"coupon_type"
/>
<result
property=
"orderType"
column=
"order_type"
/>
<result
property=
"pack
ageId"
column=
"package_id
"
/>
<result
property=
"pack
ids"
column=
"packids
"
/>
<result
property=
"dealgroupId"
column=
"dealgroup_id"
/>
<result
property=
"storeIds"
column=
"store_ids"
/>
<result
property=
"duration"
column=
"duration"
/>
...
...
@@ -41,7 +41,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
room_type,
coupon_type,
order_type,
pack
age_id
,
pack
ids
,
dealgroup_id,
weeks,
store_ids,
...
...
@@ -64,7 +64,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if
test=
"roomType != null"
>
and room_type = #{roomType}
</if>
<if
test=
"couponType != null"
>
and coupon_type = #{couponType}
</if>
<if
test=
"orderType != null"
>
and order_type = #{orderType}
</if>
<if
test=
"pack
ageId != null"
>
and package_id = #{packageId
}
</if>
<if
test=
"pack
ids != null"
>
and packids = #{packids
}
</if>
<if
test=
"dealgroupId != null"
>
and dealgroup_id = #{dealgroupId}
</if>
<if
test=
"storeIds != null"
>
and store_ids = #{storeIds}
</if>
<if
test=
"duration != null and duration != ''"
>
and duration = #{duration}
</if>
...
...
@@ -103,7 +103,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
where 1=1 and coupon_type = #{couponType}
<if
test=
"endDate != null"
>
and end_date >= NOW()
</if>
<if
test=
"orderType != null"
>
and order_type = #{orderType}
</if>
<if
test=
"pack
ageId != null"
>
and package_id = #{packageId
}
</if>
<if
test=
"pack
ids != null"
>
and packids = #{packids
}
</if>
</select>
<select
id=
"selectSCouponByDealgroupId"
resultMap=
"SCouponResult"
>
<include
refid=
"selectSCouponVo"
/>
...
...
@@ -138,7 +138,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if
test=
"createTime != null"
>
create_time,
</if>
<if
test=
"remark != null"
>
remark,
</if>
<if
test=
"orderType != null"
>
order_type,
</if>
<if
test=
"pack
ageId != null"
>
package_id
,
</if>
<if
test=
"pack
ids != null"
>
packids
,
</if>
<if
test=
"dealgroupId != null"
>
dealgroup_id,
</if>
<if
test=
"storeIds != null"
>
store_ids,
</if>
</trim>
...
...
@@ -164,7 +164,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if
test=
"createTime != null"
>
#{createTime},
</if>
<if
test=
"remark != null"
>
#{remark},
</if>
<if
test=
"orderType != null"
>
#{orderType},
</if>
<if
test=
"pack
ageId != null"
>
#{packageId
},
</if>
<if
test=
"pack
ids != null"
>
#{packids
},
</if>
<if
test=
"dealgroupId != null"
>
#{dealgroupId},
</if>
<if
test=
"storeIds != null"
>
#{storeIds},
</if>
</trim>
...
...
@@ -182,7 +182,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if
test=
"roomType != null"
>
room_type = #{roomType},
</if>
<if
test=
"couponType != null"
>
coupon_type = #{couponType},
</if>
<if
test=
"orderType != ''"
>
order_type = #{orderType},
</if>
<if
test=
"pack
ageId != ''"
>
package_id = #{packageId
},
</if>
<if
test=
"pack
ids != ''"
>
packids = #{packids
},
</if>
<if
test=
"storeIds != null"
>
store_ids = #{storeIds},
</if>
<if
test=
"dealgroupId != null"
>
dealgroup_id = #{dealgroupId},
</if>
<if
test=
"duration != null and duration != ''"
>
duration = #{duration},
</if>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment