|
@@ -16,7 +16,7 @@ type deviceCtl struct{}
|
|
func (c deviceCtl) CountDevice(ctx *gin.Context) {
|
|
func (c deviceCtl) CountDevice(ctx *gin.Context) {
|
|
value, _ := ctx.Get(middleware.Authorization)
|
|
value, _ := ctx.Get(middleware.Authorization)
|
|
claims := value.(*middleware.Claims)
|
|
claims := value.(*middleware.Claims)
|
|
- var req model.ResuestDeviceCountFilter
|
|
|
|
|
|
+ var req model.RequestDeviceCountFilter
|
|
err := ctx.ShouldBindQuery(&req)
|
|
err := ctx.ShouldBindQuery(&req)
|
|
if err != nil {
|
|
if err != nil {
|
|
ctx.JSON(http.StatusOK, err)
|
|
ctx.JSON(http.StatusOK, err)
|
|
@@ -33,13 +33,19 @@ func (c deviceCtl) CountDevice(ctx *gin.Context) {
|
|
func (c deviceCtl) MonthList(ctx *gin.Context) {
|
|
func (c deviceCtl) MonthList(ctx *gin.Context) {
|
|
value, _ := ctx.Get(middleware.Authorization)
|
|
value, _ := ctx.Get(middleware.Authorization)
|
|
claims := value.(*middleware.Claims)
|
|
claims := value.(*middleware.Claims)
|
|
- var req model.ResuestDeviceCountFilter
|
|
|
|
|
|
+ var req model.RequestDeviceCountFilter
|
|
err := ctx.ShouldBindQuery(&req)
|
|
err := ctx.ShouldBindQuery(&req)
|
|
if err != nil {
|
|
if err != nil {
|
|
ctx.JSON(http.StatusOK, err)
|
|
ctx.JSON(http.StatusOK, err)
|
|
return
|
|
return
|
|
}
|
|
}
|
|
- records, err := service.DeviceCountService.GetMonthList(claims.TenantId, req)
|
|
|
|
|
|
+ var records interface{}
|
|
|
|
+ err = nil
|
|
|
|
+ if req.QueryType == "day" {
|
|
|
|
+ records, err = service.DeviceCountService.GetDayList(claims.TenantId, req)
|
|
|
|
+ } else {
|
|
|
|
+ records, err = service.DeviceCountService.GetMonthList(claims.TenantId, req)
|
|
|
|
+ }
|
|
if err != nil {
|
|
if err != nil {
|
|
ctx.JSON(http.StatusOK, err)
|
|
ctx.JSON(http.StatusOK, err)
|
|
return
|
|
return
|
|
@@ -50,7 +56,7 @@ func (c deviceCtl) MonthList(ctx *gin.Context) {
|
|
func (c deviceCtl) YearList(ctx *gin.Context) {
|
|
func (c deviceCtl) YearList(ctx *gin.Context) {
|
|
value, _ := ctx.Get(middleware.Authorization)
|
|
value, _ := ctx.Get(middleware.Authorization)
|
|
claims := value.(*middleware.Claims)
|
|
claims := value.(*middleware.Claims)
|
|
- var req model.ResuestDeviceCountFilter
|
|
|
|
|
|
+ var req model.RequestDeviceCountFilter
|
|
err := ctx.ShouldBindQuery(&req)
|
|
err := ctx.ShouldBindQuery(&req)
|
|
if err != nil {
|
|
if err != nil {
|
|
ctx.JSON(http.StatusOK, err)
|
|
ctx.JSON(http.StatusOK, err)
|