|
@@ -62,12 +62,6 @@ func GetFiccFirstListExceptTacticByProductId() (list []*ChartPermission, err err
|
|
|
return
|
|
|
}
|
|
|
|
|
|
-// GetFiccFirstListExceptTacticAndFixedByProductId 获取ficc 除了市场策略和固定收益的所有父级
|
|
|
-func GetFiccFirstListExceptTacticAndFixedByProductId() (list []*ChartPermission, err error) {
|
|
|
- err = global.MYSQL["rddp"].Where(" enabled = 1 AND permission_type = 0 AND product_id = 1 and classify_name != '市场策略' and classify_name != '固定收益' AND parent_id = 0").Order("sort asc").Find(&list).Error
|
|
|
- return
|
|
|
-}
|
|
|
-
|
|
|
// GetChartPermissionsByProductId 获取权限列表
|
|
|
func GetChartPermissionsByProductId() (list []*ChartPermission, err error) {
|
|
|
err = global.MYSQL["rddp"].Where(" enabled = 1 AND product_id = 1").Order("parent_id ASC, sort ASC, created_time ASC").Find(&list).Error
|