package com.zbkj.common.constants; /** * 砍价常量类 * +---------------------------------------------------------------------- * | CRMEB [ CRMEB赋能开发者,助力企业发展 ] * +---------------------------------------------------------------------- * | Copyright (c) 2016~2023 https://www.crmeb.com All rights reserved. * +---------------------------------------------------------------------- * | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权 * +---------------------------------------------------------------------- * | Author: CRMEB Team * +---------------------------------------------------------------------- */ public class BargainConstants { /** 用户砍价状态-参与中 */ public static final Integer BARGAIN_USER_STATUS_PARTICIPATE = 1; /** 用户砍价状态-活动结束参与失败 */ public static final Integer BARGAIN_USER_STATUS_FAIL = 2; /** 用户砍价状态-活动结束参与成功 */ public static final Integer BARGAIN_USER_STATUS_SUCCESS = 3; }