Il sito funziona meglio con JavaScript.
Home
Esplora
Aiuto
Accedi
SmartCanteen
/
smart_canteen
Segui
2
Vota
0
Forka
0
Codice
Problemi
0
Pull Requests
0
Rilasci
0
Wiki
Attività
Sfoglia il codice sorgente
update
master
dengbiao
2 mesi fa
parent
cb4f0a3831
commit
0579f4c610
2 ha cambiato i file
con
4 aggiunte
e
0 eliminazioni
Visualizzazione separata
Opzioni Diff
Mostra statistiche
Scarica il file Patch
Scarica il file Diff
+1
-0
app/admin/md/md_enterprise.go
+3
-0
app/admin/svc/svc_enterprise.go
+ 1
- 0
app/admin/md/md_enterprise.go
Vedi File
@@ -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
Vedi File
@@ -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
Scrivi
Anteprima
Caricamento…
Annulla
Salva