Files
junhong_cmp_fiber/pkg/constants/shop.go

19 lines
765 B
Go
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
package constants
const (
ShopStatusDisabled = 0
ShopStatusEnabled = 1
)
const (
ShopMinLevel = 1
ShopMaxLevel = 7
)
// 店铺管理权限提示常量。
const (
ShopManagementForbiddenMessage = "无权限访问店铺管理功能" // 企业账号访问核心店铺管理功能时的提示
ShopManagementAccessDescription = "仅超级管理员、平台账号和代理账号可访问,企业账号返回 403。" // 核心店铺管理接口权限说明
ShopListPaginationDescription = "分页默认第 1 页、每页 20 条page 最小为 1page_size 范围为 1 至 100。所有筛选条件在查询前统一校验。" // 店铺列表分页与校验说明
)