Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gogirl-miniapp-backend
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
huluobin
gogirl-miniapp-backend
Commits
a08c2948
Commit
a08c2948
authored
Mar 19, 2020
by
huluobin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update
parent
3a9bc1ac
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
3 deletions
+4
-3
TakeLeaveEvent.java
src/main/java/com/gogirl/domain/store/oa/TakeLeaveEvent.java
+1
-1
OrderManageController.java
.../gogirl/interfaces/order/serve/OrderManageController.java
+1
-1
PurchaseSkuMapper.xml
src/main/resources/mapper/product/PurchaseSkuMapper.xml
+2
-1
No files found.
src/main/java/com/gogirl/domain/store/oa/TakeLeaveEvent.java
View file @
a08c2948
...
...
@@ -41,7 +41,7 @@ public class TakeLeaveEvent {
@ApiModelProperty
(
"请假美甲师id"
)
private
Integer
applyTechnicianId
;
@ApiModelProperty
(
"1-加班 2-调休 3-事假 4-病假 5-外出 6-婚假"
)
@ApiModelProperty
(
"1-加班 2-调休 3-事假 4-病假 5-外出 6-婚假
7-生日假
"
)
private
Integer
type
;
@ApiModelProperty
(
"开始时间"
)
...
...
src/main/java/com/gogirl/interfaces/order/serve/OrderManageController.java
View file @
a08c2948
...
...
@@ -123,7 +123,7 @@ public class OrderManageController {
}
@ApiOperation
(
"根据skuName查询sku"
)
@PostMapping
(
"/
/
technician/ordermanage/selectBySkuName"
)
@PostMapping
(
"/technician/ordermanage/selectBySkuName"
)
public
JsonResult
<
PurchaseSku
>
selectBySkuName
(
String
skuName
)
{
PurchaseSku
purchaseSku
=
purchaseSkuMapper
.
selectBySkuName
(
skuName
);
return
JsonResult
.
success
(
purchaseSku
);
...
...
src/main/resources/mapper/product/PurchaseSkuMapper.xml
View file @
a08c2948
...
...
@@ -20,7 +20,8 @@
<select
id=
"selectBySkuName"
resultType=
"com.gogirl.domain.product.purchase.PurchaseSku"
>
select *
from purchase_sku
where sku_name = #{skuName}
where sku_name like concat('%', #{skuName}, '%')
limit 1
</select>
</mapper>
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