()
| 1077 | } |
| 1078 | |
| 1079 | func (this *ManagerController) DeleteBanner() { |
| 1080 | id, _ := this.GetInt("id") |
| 1081 | if id > 0 { |
| 1082 | err := models.NewBanner().Delete(id) |
| 1083 | if err != nil { |
| 1084 | this.JsonResult(1, err.Error()) |
| 1085 | } |
| 1086 | } |
| 1087 | this.JsonResult(0, "删除成功") |
| 1088 | } |
| 1089 | |
| 1090 | func (this *ManagerController) UpdateBanner() { |
| 1091 | id, _ := this.GetInt("id") |
nothing calls this directly
no test coverage detected