var list []Article
o := orm.NewOrm()
num, _ := o.Raw("SELECT * FROM `article` WHERE `type_id` =? and `id` !=? and `status`=? limit ?", 1, 1, 1, 2).QueryRows(&list)
if num == 0 {
}
return list
o := orm.NewOrm()
num, _ := o.Raw("SELECT * FROM `article` WHERE `type_id` =? and `id` !=? and `status`=? limit ?", 1, 1, 1, 2).QueryRows(&list)
if num == 0 {
}
return list









