12345678910111213141516171819 |
- package cn.com.ty.lift.common.constants;
- /**
- * @author bieao
- * @date 2019/12/3
- * @description
- */
- public class RedisConstants {
- /**
- * 省市区列表 key
- */
- public static final String RK_AREA_LIST = "system::area::list";
- /**
- * 电梯品牌列表 key
- */
- public static final String RK_LIFT_BRAND_LIST = "business::liftBrand::list";
- }
|