This website works better with JavaScript.
首頁
探索
說明
登入
SmartCanteen
/
smart_canteen
關註
2
收藏
0
複製
0
程式碼
問題管理
0
合併請求
0
版本發佈
0
Wiki
Activity
瀏覽代碼
update
master
dengbiao
2 月之前
父節點
cb4f0a3831
當前提交
0579f4c610
共有
2 個文件被更改
,包括
4 次插入
和
0 次删除
分割檢視
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-0
app/admin/md/md_enterprise.go
+3
-0
app/admin/svc/svc_enterprise.go
+ 1
- 0
app/admin/md/md_enterprise.go
查看文件
@@ -50,6 +50,7 @@ type EnterpriseListReq struct {
Kind int `json:"kind" label:"种类"`
Pvd int `json:"pvd" label:"场景"`
Mode int `json:"mode" label:"模式"`
State int32 `json:"state" label:"状态"`
}
type EnterpriseDetailResp struct {
+ 3
- 0
app/admin/svc/svc_enterprise.go
查看文件
@@ -38,6 +38,9 @@ func EnterpriseList(admin model.Admin, req md.EnterpriseListReq) (m []model.Ente
if req.Mode != 0 {
sess.And("mode = ?", req.Mode)
}
if req.State != 0 {
sess.And("state = ?", req.State)
}
total, err = sess.FindAndCount(&m)
if err != nil {
return
Write
Preview
Loading…
取消
儲存