Este sitio web funciona mejor con JavaScript.
Inicio
Explorar
Ayuda
Iniciar sesión
SmartCanteen
/
smart_canteen
Seguir
2
Destacar
0
Fork
0
Código
Incidencias
0
Pull Requests
0
Lanzamientos
0
Wiki
Actividad
Explorar el Código
update
master
dengbiao
hace 2 meses
padre
cb4f0a3831
commit
0579f4c610
Se han
modificado 2 ficheros
con
4 adiciones
y
0 borrados
Dividir vista
Opciones de diferencias
Mostrar estadísticas
Descargar archivo de parche
Descargar archivo de diferencias
+1
-0
app/admin/md/md_enterprise.go
+3
-0
app/admin/svc/svc_enterprise.go
+ 1
- 0
app/admin/md/md_enterprise.go
Ver fichero
@@ -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
Ver fichero
@@ -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
Escribir
Vista previa
Cargando…
Cancelar
Guardar