| | |
| | | package com.yeshi.fanli.exception; |
| | | |
| | | public class ActivityException extends Exception { |
| | | /** |
| | | * |
| | | */ |
| | | private static final long serialVersionUID = 1L; |
| | | private int code; |
| | | private String msg; |
| | | |
| | | public int getCode() { |
| | | return code; |
| | | } |
| | | |
| | | public String getMsg() { |
| | | return msg; |
| | | } |
| | | |
| | | public ActivityException(int code, String msg) { |
| | | this.code = code; |
| | | this.msg = msg; |
| | | } |
| | | |
| | | public ActivityException() { |
| | | } |
| | | |
| | | @Override |
| | | public String getMessage() { |
| | | return this.msg; |
| | | } |
| | | |
| | | } |
| | | package com.yeshi.fanli.exception;
|
| | |
|
| | | public class ActivityException extends BaseException {
|
| | | |
| | | private static final long serialVersionUID = 1L;
|
| | | |
| | | public ActivityException(int code, String msg) {
|
| | | super(code, msg);
|
| | | }
|
| | |
|
| | | public ActivityException() {
|
| | | super();
|
| | | }
|
| | | }
|
| | |
| | | package com.yeshi.fanli.exception; |
| | | |
| | | public class AlipayAccountException extends Exception { |
| | | |
| | | // 无余额 |
| | | public static int CODE_NO_MONEY = 1; |
| | | |
| | | // 提现次数超限 |
| | | public static int CODE_TIMES_LIMIT = 2; |
| | | |
| | | // 参数错误 |
| | | public static int CODE_NO_PARAMS = 3; |
| | | |
| | | // 已经被绑定 |
| | | public static int CODE_ALREADY_BIND = 4; |
| | | |
| | | /** |
| | | * 支付宝账号异常 |
| | | */ |
| | | private static final long serialVersionUID = 1L; |
| | | private int code; |
| | | private String msg; |
| | | |
| | | public int getCode() { |
| | | return code; |
| | | } |
| | | |
| | | public String getMsg() { |
| | | return msg; |
| | | } |
| | | |
| | | public AlipayAccountException(int code, String msg) { |
| | | this.code = code; |
| | | this.msg = msg; |
| | | } |
| | | |
| | | public AlipayAccountException() { |
| | | } |
| | | |
| | | @Override |
| | | public String getMessage() { |
| | | return this.msg; |
| | | } |
| | | |
| | | } |
| | | package com.yeshi.fanli.exception;
|
| | |
|
| | | public class AlipayAccountException extends BaseException {
|
| | |
|
| | | // 无余额
|
| | | public static int CODE_NO_MONEY = 1;
|
| | |
|
| | | // 提现次数超限
|
| | | public static int CODE_TIMES_LIMIT = 2;
|
| | |
|
| | | // 参数错误
|
| | | public static int CODE_NO_PARAMS = 3;
|
| | |
|
| | | // 已经被绑定
|
| | | public static int CODE_ALREADY_BIND = 4;
|
| | |
|
| | | /**
|
| | | * 支付宝账号异常
|
| | | */
|
| | | private static final long serialVersionUID = 1L;
|
| | | |
| | | public AlipayAccountException(int code, String msg) {
|
| | | super(code, msg);
|
| | | }
|
| | |
|
| | | public AlipayAccountException() {
|
| | | super();
|
| | | }
|
| | | }
|
| | |
| | | this.msg = msg;
|
| | | }
|
| | |
|
| | | public BaseException(String msg) {
|
| | | this.msg = msg;
|
| | | }
|
| | | |
| | | public BaseException() {
|
| | | }
|
| | |
|
| | |
| | | package com.yeshi.fanli.exception;
|
| | |
|
| | | public class BindingAccountException extends Exception {
|
| | | public class BindingAccountException extends BaseException {
|
| | | private static final long serialVersionUID = 9044535997260029818L;
|
| | |
|
| | | // 账户不可抵达
|
| | |
| | | // 其他未知错误
|
| | | public static int CODE_OTHER_ERROR = 3;
|
| | |
|
| | | private int code;
|
| | | private String msg;
|
| | |
|
| | | public int getCode() {
|
| | | return code;
|
| | | }
|
| | |
|
| | | public String getMsg() {
|
| | | return msg;
|
| | | }
|
| | |
|
| | | public BindingAccountException() {
|
| | | public BindingAccountException(int code, String msg) {
|
| | | super(code, msg);
|
| | | }
|
| | |
|
| | | public BindingAccountException(String msg) {
|
| | | super(msg);
|
| | | }
|
| | |
|
| | | public BindingAccountException(int code, String msg) {
|
| | | this.code = code;
|
| | | this.msg = msg;
|
| | | |
| | | public BindingAccountException() {
|
| | | super();
|
| | | }
|
| | | |
| | | }
|
| | |
| | | package com.yeshi.fanli.exception; |
| | | |
| | | public class BoutiqueAutoRuleException extends Exception { |
| | | /** |
| | | * |
| | | */ |
| | | private static final long serialVersionUID = 1L; |
| | | private int code; |
| | | private String msg; |
| | | |
| | | public int getCode() { |
| | | return code; |
| | | } |
| | | |
| | | public String getMsg() { |
| | | return msg; |
| | | } |
| | | |
| | | public BoutiqueAutoRuleException(int code, String msg) { |
| | | this.code = code; |
| | | this.msg = msg; |
| | | } |
| | | |
| | | public BoutiqueAutoRuleException() { |
| | | } |
| | | |
| | | @Override |
| | | public String getMessage() { |
| | | return this.msg; |
| | | } |
| | | |
| | | } |
| | | package com.yeshi.fanli.exception;
|
| | |
|
| | | public class BoutiqueAutoRuleException extends BaseException {
|
| | | |
| | | private static final long serialVersionUID = 1L;
|
| | | |
| | | public BoutiqueAutoRuleException(int code, String msg) {
|
| | | super(code, msg);
|
| | | }
|
| | |
|
| | | public BoutiqueAutoRuleException() {
|
| | | super();
|
| | | }
|
| | | }
|
| | |
| | | package com.yeshi.fanli.exception; |
| | | |
| | | public class ConfigException extends Exception { |
| | | |
| | | public final static int CODE_VERIFY = 1; |
| | | |
| | | /** |
| | | * |
| | | */ |
| | | private static final long serialVersionUID = 1L; |
| | | private int code; |
| | | private String msg; |
| | | |
| | | public int getCode() { |
| | | return code; |
| | | } |
| | | |
| | | public String getMsg() { |
| | | return msg; |
| | | } |
| | | |
| | | public ConfigException(int code, String msg) { |
| | | this.code = code; |
| | | this.msg = msg; |
| | | } |
| | | |
| | | public ConfigException() { |
| | | } |
| | | |
| | | @Override |
| | | public String getMessage() { |
| | | return this.msg; |
| | | } |
| | | |
| | | } |
| | | package com.yeshi.fanli.exception;
|
| | |
|
| | | public class ConfigException extends BaseException {
|
| | |
|
| | | public final static int CODE_VERIFY = 1;
|
| | |
|
| | | private static final long serialVersionUID = 1L;
|
| | | |
| | | public ConfigException(int code, String msg) {
|
| | | super(code, msg);
|
| | | }
|
| | |
|
| | | public ConfigException() {
|
| | | super();
|
| | | }
|
| | | }
|
| | |
| | | package com.yeshi.fanli.exception; |
| | | |
| | | public class CustomerServiceCommonQuestionException extends Exception { |
| | | |
| | | |
| | | /** |
| | | * |
| | | */ |
| | | private static final long serialVersionUID = 1L; |
| | | private int code; |
| | | private String msg; |
| | | |
| | | public int getCode() { |
| | | return code; |
| | | } |
| | | |
| | | public String getMsg() { |
| | | return msg; |
| | | } |
| | | |
| | | public CustomerServiceCommonQuestionException(int code, String msg) { |
| | | this.code = code; |
| | | this.msg = msg; |
| | | } |
| | | |
| | | public CustomerServiceCommonQuestionException() { |
| | | } |
| | | |
| | | @Override |
| | | public String getMessage() { |
| | | return this.msg; |
| | | } |
| | | |
| | | } |
| | | package com.yeshi.fanli.exception;
|
| | |
|
| | | public class CustomerServiceCommonQuestionException extends BaseException {
|
| | |
|
| | | private static final long serialVersionUID = 1L;
|
| | | |
| | | public CustomerServiceCommonQuestionException(int code, String msg) {
|
| | | super(code, msg);
|
| | | }
|
| | |
|
| | | public CustomerServiceCommonQuestionException() {
|
| | | super();
|
| | | }
|
| | | }
|
| | |
| | | package com.yeshi.fanli.exception;
|
| | |
|
| | | public class ExtractException extends Exception {
|
| | | public class ExtractException extends BaseException {
|
| | |
|
| | | private static final long serialVersionUID = 572112205824229000L;
|
| | |
|
| | | private int code;
|
| | | private String msg;
|
| | | |
| | | public ExtractException(int code, String msg) {
|
| | | super(code, msg);
|
| | | }
|
| | |
|
| | | public ExtractException() {
|
| | | }
|
| | |
|
| | | public ExtractException(int code, String msg) {
|
| | | this.code = code;
|
| | | this.msg = msg;
|
| | | }
|
| | |
|
| | | public int getCode() {
|
| | | return code;
|
| | | }
|
| | |
|
| | | public String getMsg() {
|
| | | return msg;
|
| | | }
|
| | |
|
| | | @Override
|
| | | public String getMessage() {
|
| | | return this.msg;
|
| | | super();
|
| | | }
|
| | | }
|
| | |
| | | package com.yeshi.fanli.exception; |
| | | |
| | | public class FloatADException extends Exception { |
| | | /** |
| | | * |
| | | */ |
| | | private static final long serialVersionUID = 1L; |
| | | private int code; |
| | | private String msg; |
| | | |
| | | public int getCode() { |
| | | return code; |
| | | } |
| | | |
| | | public String getMsg() { |
| | | return msg; |
| | | } |
| | | |
| | | public FloatADException(int code, String msg) { |
| | | this.code = code; |
| | | this.msg = msg; |
| | | } |
| | | |
| | | public FloatADException() { |
| | | } |
| | | |
| | | @Override |
| | | public String getMessage() { |
| | | return this.msg; |
| | | } |
| | | |
| | | } |
| | | package com.yeshi.fanli.exception;
|
| | |
|
| | | public class FloatADException extends BaseException {
|
| | | |
| | | private static final long serialVersionUID = 1L;
|
| | | |
| | | public FloatADException(int code, String msg) {
|
| | | super(code, msg);
|
| | | }
|
| | |
|
| | | public FloatADException() {
|
| | | super();
|
| | | }
|
| | | }
|
| | |
| | | package com.yeshi.fanli.exception; |
| | | |
| | | public class GoodsClassException extends Exception { |
| | | /** |
| | | * |
| | | */ |
| | | private static final long serialVersionUID = 1L; |
| | | private int code; |
| | | private String msg; |
| | | |
| | | public int getCode() { |
| | | return code; |
| | | } |
| | | |
| | | public String getMsg() { |
| | | return msg; |
| | | } |
| | | |
| | | public GoodsClassException(int code, String msg) { |
| | | this.code = code; |
| | | this.msg = msg; |
| | | } |
| | | |
| | | public GoodsClassException() { |
| | | } |
| | | |
| | | @Override |
| | | public String getMessage() { |
| | | return this.msg; |
| | | } |
| | | |
| | | } |
| | | package com.yeshi.fanli.exception;
|
| | |
|
| | | public class GoodsClassException extends BaseException {
|
| | | |
| | | private static final long serialVersionUID = 1L;
|
| | | |
| | | public GoodsClassException(int code, String msg) {
|
| | | super(code, msg);
|
| | | }
|
| | |
|
| | | public GoodsClassException() {
|
| | | super();
|
| | | }
|
| | | }
|
| | |
| | | package com.yeshi.fanli.exception; |
| | | |
| | | public class GoodsSubClassException extends Exception { |
| | | /** |
| | | * |
| | | */ |
| | | private static final long serialVersionUID = 1L; |
| | | private int code; |
| | | private String msg; |
| | | |
| | | public int getCode() { |
| | | return code; |
| | | } |
| | | |
| | | public String getMsg() { |
| | | return msg; |
| | | } |
| | | |
| | | public GoodsSubClassException(int code, String msg) { |
| | | this.code = code; |
| | | this.msg = msg; |
| | | } |
| | | |
| | | public GoodsSubClassException() { |
| | | } |
| | | |
| | | @Override |
| | | public String getMessage() { |
| | | return this.msg; |
| | | } |
| | | |
| | | } |
| | | package com.yeshi.fanli.exception;
|
| | |
|
| | | public class GoodsSubClassException extends BaseException {
|
| | | |
| | | private static final long serialVersionUID = 1L;
|
| | | |
| | | public GoodsSubClassException(int code, String msg) {
|
| | | super(code, msg);
|
| | | }
|
| | |
|
| | | public GoodsSubClassException() {
|
| | | super();
|
| | | }
|
| | | }
|
| | |
| | | package com.yeshi.fanli.exception; |
| | | |
| | | public class HelpCenterException extends Exception { |
| | | /** |
| | | * |
| | | */ |
| | | private static final long serialVersionUID = 1L; |
| | | private int code; |
| | | private String msg; |
| | | |
| | | public int getCode() { |
| | | return code; |
| | | } |
| | | |
| | | public String getMsg() { |
| | | return msg; |
| | | } |
| | | |
| | | public HelpCenterException(int code, String msg) { |
| | | this.code = code; |
| | | this.msg = msg; |
| | | } |
| | | |
| | | public HelpCenterException() { |
| | | } |
| | | |
| | | @Override |
| | | public String getMessage() { |
| | | return this.msg; |
| | | } |
| | | |
| | | } |
| | | package com.yeshi.fanli.exception;
|
| | |
|
| | | public class HelpCenterException extends BaseException {
|
| | | |
| | | private static final long serialVersionUID = 1L;
|
| | | |
| | | public HelpCenterException(int code, String msg) {
|
| | | super(code, msg);
|
| | | }
|
| | |
|
| | | public HelpCenterException() {
|
| | | super();
|
| | | }
|
| | | }
|
| | |
| | | package com.yeshi.fanli.exception; |
| | | |
| | | public class HelpClassException extends Exception { |
| | | /** |
| | | * |
| | | */ |
| | | private static final long serialVersionUID = 1L; |
| | | private int code; |
| | | private String msg; |
| | | |
| | | public int getCode() { |
| | | return code; |
| | | } |
| | | |
| | | public String getMsg() { |
| | | return msg; |
| | | } |
| | | |
| | | public HelpClassException(int code, String msg) { |
| | | this.code = code; |
| | | this.msg = msg; |
| | | } |
| | | |
| | | public HelpClassException() { |
| | | } |
| | | |
| | | @Override |
| | | public String getMessage() { |
| | | return this.msg; |
| | | } |
| | | |
| | | } |
| | | package com.yeshi.fanli.exception;
|
| | |
|
| | | public class HelpClassException extends BaseException {
|
| | | |
| | | private static final long serialVersionUID = 1L;
|
| | | |
| | | public HelpClassException(int code, String msg) {
|
| | | super(code, msg);
|
| | | }
|
| | |
|
| | | public HelpClassException() {
|
| | | super();
|
| | | }
|
| | | }
|
| | |
| | | package com.yeshi.fanli.exception; |
| | | |
| | | public class HongBaoException extends Exception { |
| | | /** |
| | | * |
| | | */ |
| | | private static final long serialVersionUID = 1L; |
| | | private int code; |
| | | private String msg; |
| | | |
| | | public int getCode() { |
| | | return code; |
| | | } |
| | | |
| | | public String getMsg() { |
| | | return msg; |
| | | } |
| | | |
| | | public HongBaoException(int code, String msg) { |
| | | this.code = code; |
| | | this.msg = msg; |
| | | } |
| | | |
| | | public HongBaoException() { |
| | | } |
| | | |
| | | @Override |
| | | public String getMessage() { |
| | | return this.msg; |
| | | } |
| | | |
| | | } |
| | | package com.yeshi.fanli.exception;
|
| | |
|
| | | public class HongBaoException extends BaseException {
|
| | | |
| | | private static final long serialVersionUID = 1L;
|
| | | |
| | | public HongBaoException(int code, String msg) {
|
| | | super(code, msg);
|
| | | }
|
| | |
|
| | | public HongBaoException() {
|
| | | super();
|
| | | }
|
| | | }
|
| | |
| | | package com.yeshi.fanli.exception; |
| | | |
| | | public class HongBaoManageException extends Exception { |
| | | /** |
| | | * |
| | | */ |
| | | private static final long serialVersionUID = 1L; |
| | | private int code; |
| | | private String msg; |
| | | |
| | | public int getCode() { |
| | | return code; |
| | | } |
| | | |
| | | public String getMsg() { |
| | | return msg; |
| | | } |
| | | |
| | | public HongBaoManageException(int code, String msg) { |
| | | this.code = code; |
| | | this.msg = msg; |
| | | } |
| | | |
| | | public HongBaoManageException() { |
| | | } |
| | | |
| | | @Override |
| | | public String getMessage() { |
| | | return this.msg; |
| | | } |
| | | |
| | | } |
| | | package com.yeshi.fanli.exception;
|
| | |
|
| | | public class HongBaoManageException extends BaseException {
|
| | | |
| | | private static final long serialVersionUID = 1L;
|
| | | |
| | | public HongBaoManageException(int code, String msg) {
|
| | | super(code, msg);
|
| | | }
|
| | |
|
| | | public HongBaoManageException() {
|
| | | super();
|
| | | }
|
| | | }
|
| | |
| | | package com.yeshi.fanli.exception; |
| | | |
| | | public class LabelClassException extends Exception { |
| | | |
| | | |
| | | private static final long serialVersionUID = 1L; |
| | | private int code; |
| | | private String msg; |
| | | |
| | | public int getCode() { |
| | | return code; |
| | | } |
| | | |
| | | public String getMsg() { |
| | | return msg; |
| | | } |
| | | |
| | | public LabelClassException(int code, String msg) { |
| | | this.code = code; |
| | | this.msg = msg; |
| | | } |
| | | |
| | | public LabelClassException() { |
| | | } |
| | | |
| | | @Override |
| | | public String getMessage() { |
| | | return this.msg; |
| | | } |
| | | |
| | | } |
| | | package com.yeshi.fanli.exception;
|
| | |
|
| | | public class LabelClassException extends BaseException {
|
| | | |
| | | |
| | | private static final long serialVersionUID = 1L;
|
| | | |
| | | public LabelClassException(int code, String msg) {
|
| | | super(code, msg);
|
| | | }
|
| | |
|
| | | public LabelClassException() {
|
| | | super();
|
| | | }
|
| | | }
|
| | |
| | | package com.yeshi.fanli.exception; |
| | | |
| | | public class LabelException extends Exception { |
| | | /** |
| | | * |
| | | */ |
| | | private static final long serialVersionUID = 1L; |
| | | private int code; |
| | | private String msg; |
| | | |
| | | public int getCode() { |
| | | return code; |
| | | } |
| | | |
| | | public String getMsg() { |
| | | return msg; |
| | | } |
| | | |
| | | public LabelException(int code, String msg) { |
| | | this.code = code; |
| | | this.msg = msg; |
| | | } |
| | | |
| | | public LabelException() { |
| | | } |
| | | |
| | | @Override |
| | | public String getMessage() { |
| | | return this.msg; |
| | | } |
| | | |
| | | } |
| | | package com.yeshi.fanli.exception;
|
| | |
|
| | | public class LabelException extends BaseException {
|
| | | |
| | | private static final long serialVersionUID = 1L;
|
| | | |
| | | public LabelException(int code, String msg) {
|
| | | super(code, msg);
|
| | | }
|
| | |
|
| | | public LabelException() {
|
| | | super();
|
| | | }
|
| | | }
|
| | |
| | | package com.yeshi.fanli.exception; |
| | | |
| | | public class LabelGoodsException extends Exception { |
| | | |
| | | |
| | | private static final long serialVersionUID = 1L; |
| | | private int code; |
| | | private String msg; |
| | | |
| | | public int getCode() { |
| | | return code; |
| | | } |
| | | |
| | | public String getMsg() { |
| | | return msg; |
| | | } |
| | | |
| | | public LabelGoodsException(int code, String msg) { |
| | | this.code = code; |
| | | this.msg = msg; |
| | | } |
| | | |
| | | public LabelGoodsException() { |
| | | } |
| | | |
| | | @Override |
| | | public String getMessage() { |
| | | return this.msg; |
| | | } |
| | | |
| | | } |
| | | package com.yeshi.fanli.exception;
|
| | |
|
| | | public class LabelGoodsException extends BaseException {
|
| | | |
| | | private static final long serialVersionUID = 1L;
|
| | | |
| | | public LabelGoodsException(int code, String msg) {
|
| | | super(code, msg);
|
| | | }
|
| | |
|
| | | public LabelGoodsException() {
|
| | | super();
|
| | | }
|
| | | }
|
| | |
| | | package com.yeshi.fanli.exception; |
| | | |
| | | public class MergeClassException extends Exception { |
| | | |
| | | |
| | | private static final long serialVersionUID = 1L; |
| | | private int code; |
| | | private String msg; |
| | | |
| | | public int getCode() { |
| | | return code; |
| | | } |
| | | |
| | | public String getMsg() { |
| | | return msg; |
| | | } |
| | | |
| | | public MergeClassException(int code, String msg) { |
| | | this.code = code; |
| | | this.msg = msg; |
| | | } |
| | | |
| | | public MergeClassException() { |
| | | } |
| | | |
| | | @Override |
| | | public String getMessage() { |
| | | return this.msg; |
| | | } |
| | | |
| | | } |
| | | package com.yeshi.fanli.exception;
|
| | |
|
| | | public class MergeClassException extends BaseException {
|
| | | |
| | | private static final long serialVersionUID = 1L;
|
| | | |
| | | public MergeClassException(int code, String msg) {
|
| | | super(code, msg);
|
| | | }
|
| | |
|
| | | public MergeClassException() {
|
| | | super();
|
| | | }
|
| | | }
|
| | |
| | | package com.yeshi.fanli.exception;
|
| | |
|
| | | public class NotExistObjectException extends Exception {
|
| | | public class NotExistObjectException extends BaseException {
|
| | |
|
| | | private static final long serialVersionUID = 572112205824229000L;
|
| | |
|
| | |
| | | package com.yeshi.fanli.exception; |
| | | |
| | | public class OrderItemException extends Exception { |
| | | /** |
| | | * |
| | | */ |
| | | private static final long serialVersionUID = 1L; |
| | | private int code; |
| | | private String msg; |
| | | |
| | | public int getCode() { |
| | | return code; |
| | | } |
| | | |
| | | public String getMsg() { |
| | | return msg; |
| | | } |
| | | |
| | | public OrderItemException(int code, String msg) { |
| | | this.code = code; |
| | | this.msg = msg; |
| | | } |
| | | |
| | | public OrderItemException() { |
| | | } |
| | | |
| | | @Override |
| | | public String getMessage() { |
| | | return this.msg; |
| | | } |
| | | |
| | | } |
| | | package com.yeshi.fanli.exception;
|
| | |
|
| | | public class OrderItemException extends BaseException {
|
| | | |
| | | private static final long serialVersionUID = 1L;
|
| | | |
| | | public OrderItemException(int code, String msg) {
|
| | | super(code, msg);
|
| | | }
|
| | |
|
| | | public OrderItemException() {
|
| | | super();
|
| | | }
|
| | | }
|
| | |
| | | package com.yeshi.fanli.exception; |
| | | |
| | | public class PushException extends Exception { |
| | | /** |
| | | * |
| | | */ |
| | | private static final long serialVersionUID = 1L; |
| | | private int code; |
| | | private String msg; |
| | | |
| | | public int getCode() { |
| | | return code; |
| | | } |
| | | |
| | | public String getMsg() { |
| | | return msg; |
| | | } |
| | | |
| | | public PushException(int code, String msg) { |
| | | this.code = code; |
| | | this.msg = msg; |
| | | } |
| | | |
| | | public PushException() { |
| | | } |
| | | |
| | | @Override |
| | | public String getMessage() { |
| | | return this.msg; |
| | | } |
| | | |
| | | } |
| | | package com.yeshi.fanli.exception;
|
| | |
|
| | | public class PushException extends BaseException {
|
| | | |
| | | private static final long serialVersionUID = 1L;
|
| | | |
| | | public PushException(int code, String msg) {
|
| | | super(code, msg);
|
| | | }
|
| | |
|
| | | public PushException() {
|
| | | super();
|
| | | }
|
| | | }
|
| | |
| | | package com.yeshi.fanli.exception; |
| | | |
| | | public class QualityFactoryException extends Exception { |
| | | |
| | | |
| | | private static final long serialVersionUID = 1L; |
| | | private int code; |
| | | private String msg; |
| | | |
| | | public int getCode() { |
| | | return code; |
| | | } |
| | | |
| | | public String getMsg() { |
| | | return msg; |
| | | } |
| | | |
| | | public QualityFactoryException(int code, String msg) { |
| | | this.code = code; |
| | | this.msg = msg; |
| | | } |
| | | |
| | | public QualityFactoryException() { |
| | | } |
| | | |
| | | @Override |
| | | public String getMessage() { |
| | | return this.msg; |
| | | } |
| | | |
| | | } |
| | | package com.yeshi.fanli.exception;
|
| | |
|
| | | public class QualityFactoryException extends BaseException {
|
| | | |
| | | private static final long serialVersionUID = 1L;
|
| | | |
| | | public QualityFactoryException(int code, String msg) {
|
| | | super(code, msg);
|
| | | }
|
| | |
|
| | | public QualityFactoryException() {
|
| | | super();
|
| | | }
|
| | | }
|
| | |
| | | package com.yeshi.fanli.exception; |
| | | |
| | | public class QualityFlashSaleException extends Exception { |
| | | |
| | | |
| | | private static final long serialVersionUID = 1L; |
| | | private int code; |
| | | private String msg; |
| | | |
| | | public int getCode() { |
| | | return code; |
| | | } |
| | | |
| | | public String getMsg() { |
| | | return msg; |
| | | } |
| | | |
| | | public QualityFlashSaleException(int code, String msg) { |
| | | this.code = code; |
| | | this.msg = msg; |
| | | } |
| | | |
| | | public QualityFlashSaleException() { |
| | | } |
| | | |
| | | @Override |
| | | public String getMessage() { |
| | | return this.msg; |
| | | } |
| | | |
| | | } |
| | | package com.yeshi.fanli.exception;
|
| | |
|
| | | public class QualityFlashSaleException extends BaseException {
|
| | | |
| | | private static final long serialVersionUID = 1L;
|
| | | |
| | | public QualityFlashSaleException(int code, String msg) {
|
| | | super(code, msg);
|
| | | }
|
| | |
|
| | | public QualityFlashSaleException() {
|
| | | super();
|
| | | }
|
| | | }
|
| | |
| | | package com.yeshi.fanli.exception; |
| | | |
| | | public class SMSException extends Exception { |
| | | /** |
| | | * |
| | | */ |
| | | private static final long serialVersionUID = 1L; |
| | | private int code; |
| | | private String msg; |
| | | |
| | | public int getCode() { |
| | | return code; |
| | | } |
| | | |
| | | public String getMsg() { |
| | | return msg; |
| | | } |
| | | |
| | | public SMSException(int code, String msg) { |
| | | this.code = code; |
| | | this.msg = msg; |
| | | } |
| | | |
| | | public SMSException() { |
| | | } |
| | | |
| | | @Override |
| | | public String getMessage() { |
| | | return this.msg; |
| | | } |
| | | |
| | | } |
| | | package com.yeshi.fanli.exception;
|
| | |
|
| | | public class SMSException extends BaseException {
|
| | | |
| | | private static final long serialVersionUID = 1L;
|
| | | |
| | | public SMSException(int code, String msg) {
|
| | | super(code, msg);
|
| | | }
|
| | |
|
| | | public SMSException() {
|
| | | super();
|
| | | }
|
| | | }
|
| | |
| | | package com.yeshi.fanli.exception;
|
| | |
|
| | | public class ShareGoodsException extends Exception {
|
| | | /**
|
| | | * |
| | | */
|
| | | public class ShareGoodsException extends BaseException {
|
| | | |
| | | private static final long serialVersionUID = 1L;
|
| | | private int code;
|
| | | private String msg;
|
| | |
|
| | | public int getCode() {
|
| | | return code;
|
| | | }
|
| | |
|
| | | public void setCode(int code) {
|
| | | this.code = code;
|
| | | }
|
| | |
|
| | | public String getMsg() {
|
| | | return msg;
|
| | | }
|
| | |
|
| | | public void setMsg(String msg) {
|
| | | this.msg = msg;
|
| | | |
| | | public ShareGoodsException(int code, String msg) {
|
| | | super(code, msg);
|
| | | }
|
| | |
|
| | | public ShareGoodsException() {
|
| | |
|
| | | super();
|
| | | }
|
| | |
|
| | | public ShareGoodsException(int code, String msg) {
|
| | | this.code = code;
|
| | | this.msg = msg;
|
| | | }
|
| | |
|
| | | @Override
|
| | | public String getMessage() {
|
| | | return this.msg;
|
| | | }
|
| | |
|
| | | }
|
| | |
| | | package com.yeshi.fanli.exception; |
| | | |
| | | public class SpecialPlaceException extends Exception { |
| | | /** |
| | | * |
| | | */ |
| | | private static final long serialVersionUID = 1L; |
| | | private int code; |
| | | private String msg; |
| | | |
| | | public int getCode() { |
| | | return code; |
| | | } |
| | | |
| | | public String getMsg() { |
| | | return msg; |
| | | } |
| | | |
| | | public SpecialPlaceException(int code, String msg) { |
| | | this.code = code; |
| | | this.msg = msg; |
| | | } |
| | | |
| | | public SpecialPlaceException() { |
| | | } |
| | | |
| | | @Override |
| | | public String getMessage() { |
| | | return this.msg; |
| | | } |
| | | |
| | | } |
| | | package com.yeshi.fanli.exception;
|
| | |
|
| | | public class SpecialPlaceException extends BaseException {
|
| | | |
| | | private static final long serialVersionUID = 1L;
|
| | | |
| | | public SpecialPlaceException(int code, String msg) {
|
| | | super(code, msg);
|
| | | }
|
| | |
|
| | | public SpecialPlaceException() {
|
| | | super();
|
| | | }
|
| | | }
|
| | |
| | | package com.yeshi.fanli.exception; |
| | | |
| | | public class TaoBaoOrderException extends Exception { |
| | | |
| | | public final static int CODE_VERIFY = 1; |
| | | |
| | | /** |
| | | * |
| | | */ |
| | | private static final long serialVersionUID = 1L; |
| | | private int code; |
| | | private String msg; |
| | | |
| | | public int getCode() { |
| | | return code; |
| | | } |
| | | |
| | | public String getMsg() { |
| | | return msg; |
| | | } |
| | | |
| | | public TaoBaoOrderException(int code, String msg) { |
| | | this.code = code; |
| | | this.msg = msg; |
| | | } |
| | | |
| | | public TaoBaoOrderException() { |
| | | } |
| | | |
| | | @Override |
| | | public String getMessage() { |
| | | return this.msg; |
| | | } |
| | | |
| | | } |
| | | package com.yeshi.fanli.exception;
|
| | |
|
| | | public class TaoBaoOrderException extends BaseException {
|
| | |
|
| | | public final static int CODE_VERIFY = 1;
|
| | |
|
| | | |
| | | private static final long serialVersionUID = 1L;
|
| | | |
| | | public TaoBaoOrderException(int code, String msg) {
|
| | | super(code, msg);
|
| | | }
|
| | |
|
| | | public TaoBaoOrderException() {
|
| | | super();
|
| | | }
|
| | | }
|
| | |
| | | package com.yeshi.fanli.exception; |
| | | |
| | | public class TaoBaoWeiQuanException extends Exception { |
| | | |
| | | /** |
| | | * 需要更新订单的内容 |
| | | */ |
| | | public final static int CODE_NEDD_UPDATE_ORDER=1001; |
| | | |
| | | /** |
| | | * |
| | | */ |
| | | private static final long serialVersionUID = 1L; |
| | | private int code; |
| | | private String msg; |
| | | |
| | | public int getCode() { |
| | | return code; |
| | | } |
| | | |
| | | public String getMsg() { |
| | | return msg; |
| | | } |
| | | |
| | | public TaoBaoWeiQuanException(int code, String msg) { |
| | | this.code = code; |
| | | this.msg = msg; |
| | | } |
| | | |
| | | public TaoBaoWeiQuanException() { |
| | | } |
| | | |
| | | @Override |
| | | public String getMessage() { |
| | | return this.msg; |
| | | } |
| | | |
| | | } |
| | | package com.yeshi.fanli.exception;
|
| | |
|
| | | public class TaoBaoWeiQuanException extends BaseException {
|
| | |
|
| | | /**
|
| | | * 需要更新订单的内容
|
| | | */
|
| | | public final static int CODE_NEDD_UPDATE_ORDER=1001;
|
| | |
|
| | | |
| | | private static final long serialVersionUID = 1L;
|
| | | |
| | | public TaoBaoWeiQuanException(int code, String msg) {
|
| | | super(code, msg);
|
| | | }
|
| | |
|
| | | public TaoBaoWeiQuanException() {
|
| | | super();
|
| | | }
|
| | | }
|
| | |
| | | package com.yeshi.fanli.exception;
|
| | |
|
| | | public class ThreeSaleException extends Exception {
|
| | | /**
|
| | | * |
| | | */
|
| | | public class ThreeSaleException extends BaseException {
|
| | | |
| | | private static final long serialVersionUID = 1L;
|
| | | private int code;
|
| | | private String msg;
|
| | |
|
| | | public int getCode() {
|
| | | return code;
|
| | | }
|
| | |
|
| | | public String getMsg() {
|
| | | return msg;
|
| | | }
|
| | |
|
| | | |
| | | public ThreeSaleException(int code, String msg) {
|
| | | this.code = code;
|
| | | this.msg = msg;
|
| | | super(code, msg);
|
| | | }
|
| | |
|
| | | public ThreeSaleException() {
|
| | | super();
|
| | | }
|
| | |
|
| | | @Override
|
| | | public String getMessage() {
|
| | | return this.msg;
|
| | | }
|
| | |
|
| | | }
|
| | |
| | | package com.yeshi.fanli.exception; |
| | | |
| | | public class UserAccountException extends Exception { |
| | | /** |
| | | * |
| | | */ |
| | | private static final long serialVersionUID = 1L; |
| | | private int code; |
| | | private String msg; |
| | | |
| | | public int getCode() { |
| | | return code; |
| | | } |
| | | |
| | | public String getMsg() { |
| | | return msg; |
| | | } |
| | | |
| | | public UserAccountException(int code, String msg) { |
| | | this.code = code; |
| | | this.msg = msg; |
| | | } |
| | | |
| | | public UserAccountException() { |
| | | } |
| | | |
| | | @Override |
| | | public String getMessage() { |
| | | return this.msg; |
| | | } |
| | | |
| | | } |
| | | package com.yeshi.fanli.exception;
|
| | |
|
| | | public class UserAccountException extends BaseException {
|
| | | |
| | | private static final long serialVersionUID = 1L;
|
| | | |
| | | public UserAccountException(int code, String msg) {
|
| | | super(code, msg);
|
| | | }
|
| | |
|
| | | public UserAccountException() {
|
| | | super();
|
| | | }
|
| | | }
|
| | |
| | | package com.yeshi.fanli.exception; |
| | | |
| | | public class UserRankingsException extends Exception { |
| | | /** |
| | | * |
| | | */ |
| | | private static final long serialVersionUID = 1L; |
| | | private int code; |
| | | private String msg; |
| | | |
| | | public int getCode() { |
| | | return code; |
| | | } |
| | | |
| | | public String getMsg() { |
| | | return msg; |
| | | } |
| | | |
| | | public UserRankingsException(int code, String msg) { |
| | | this.code = code; |
| | | this.msg = msg; |
| | | } |
| | | |
| | | public UserRankingsException() { |
| | | } |
| | | |
| | | @Override |
| | | public String getMessage() { |
| | | return this.msg; |
| | | } |
| | | |
| | | } |
| | | package com.yeshi.fanli.exception;
|
| | |
|
| | | public class UserRankingsException extends BaseException {
|
| | | |
| | | private static final long serialVersionUID = 1L;
|
| | | |
| | | public UserRankingsException(int code, String msg) {
|
| | | super(code, msg);
|
| | | }
|
| | |
|
| | | public UserRankingsException() {
|
| | | super();
|
| | | }
|
| | | }
|
| | |
| | | package com.yeshi.fanli.exception.user; |
| | | |
| | | public class ForbiddenUserIdentifyCodeException extends Exception { |
| | | /** |
| | | * |
| | | */ |
| | | private static final long serialVersionUID = 1L; |
| | | private int code; |
| | | private String msg; |
| | | |
| | | public int getCode() { |
| | | return code; |
| | | } |
| | | |
| | | public String getMsg() { |
| | | return msg; |
| | | } |
| | | |
| | | public ForbiddenUserIdentifyCodeException(int code, String msg) { |
| | | this.code = code; |
| | | this.msg = msg; |
| | | } |
| | | |
| | | public ForbiddenUserIdentifyCodeException() { |
| | | } |
| | | |
| | | @Override |
| | | public String getMessage() { |
| | | return this.msg; |
| | | } |
| | | |
| | | } |
| | | package com.yeshi.fanli.exception.user;
|
| | |
|
| | | import com.yeshi.fanli.exception.BaseException;
|
| | |
|
| | | public class ForbiddenUserIdentifyCodeException extends BaseException {
|
| | | /**
|
| | | * |
| | | */
|
| | | private static final long serialVersionUID = 1L;
|
| | | public ForbiddenUserIdentifyCodeException(int code, String msg) {
|
| | | super(code, msg);
|
| | | }
|
| | |
|
| | | public ForbiddenUserIdentifyCodeException() {
|
| | | super();
|
| | | }
|
| | | }
|
| | |
| | | package com.yeshi.fanli.exception.user;
|
| | |
|
| | | public class TokenRecordException extends Exception {
|
| | | /**
|
| | | * |
| | | */
|
| | | import com.yeshi.fanli.exception.BaseException;
|
| | |
|
| | | public class TokenRecordException extends BaseException {
|
| | | |
| | | private static final long serialVersionUID = 1L;
|
| | | private int code;
|
| | | private String msg;
|
| | |
|
| | | public int getCode() {
|
| | | return code;
|
| | | }
|
| | |
|
| | | public String getMsg() {
|
| | | return msg;
|
| | | }
|
| | |
|
| | | |
| | | public TokenRecordException(int code, String msg) {
|
| | | this.code = code;
|
| | | this.msg = msg;
|
| | | super(code, msg);
|
| | | }
|
| | |
|
| | | public TokenRecordException() {
|
| | | super();
|
| | | }
|
| | |
|
| | | @Override
|
| | | public String getMessage() {
|
| | | return this.msg;
|
| | | }
|
| | |
|
| | | }
|
| | |
| | | package com.yeshi.fanli.exception.user; |
| | | |
| | | public class UserComplaintException extends Exception { |
| | | /** |
| | | * |
| | | */ |
| | | private static final long serialVersionUID = 1L; |
| | | private int code; |
| | | private String msg; |
| | | |
| | | public int getCode() { |
| | | return code; |
| | | } |
| | | |
| | | public String getMsg() { |
| | | return msg; |
| | | } |
| | | |
| | | public UserComplaintException(int code, String msg) { |
| | | this.code = code; |
| | | this.msg = msg; |
| | | } |
| | | |
| | | public UserComplaintException() { |
| | | } |
| | | |
| | | @Override |
| | | public String getMessage() { |
| | | return this.msg; |
| | | } |
| | | |
| | | } |
| | | package com.yeshi.fanli.exception.user;
|
| | |
|
| | | import com.yeshi.fanli.exception.BaseException;
|
| | |
|
| | | public class UserComplaintException extends BaseException {
|
| | | /**
|
| | | * |
| | | */
|
| | | private static final long serialVersionUID = 1L;
|
| | | public UserComplaintException(int code, String msg) {
|
| | | super(code, msg);
|
| | | }
|
| | |
|
| | | public UserComplaintException() {
|
| | | super();
|
| | | }
|
| | | }
|
| | |
| | | package com.yeshi.fanli.exception.user; |
| | | |
| | | public class UserCustomSettingsException extends Exception { |
| | | /** |
| | | * |
| | | */ |
| | | private static final long serialVersionUID = 1L; |
| | | private int code; |
| | | private String msg; |
| | | |
| | | public int getCode() { |
| | | return code; |
| | | } |
| | | |
| | | public String getMsg() { |
| | | return msg; |
| | | } |
| | | |
| | | public UserCustomSettingsException(int code, String msg) { |
| | | this.code = code; |
| | | this.msg = msg; |
| | | } |
| | | |
| | | public UserCustomSettingsException() { |
| | | } |
| | | |
| | | @Override |
| | | public String getMessage() { |
| | | return this.msg; |
| | | } |
| | | |
| | | } |
| | | package com.yeshi.fanli.exception.user;
|
| | |
|
| | | import com.yeshi.fanli.exception.BaseException;
|
| | |
|
| | | public class UserCustomSettingsException extends BaseException {
|
| | | |
| | | private static final long serialVersionUID = 1L;
|
| | | |
| | | public UserCustomSettingsException(int code, String msg) {
|
| | | super(code, msg);
|
| | | }
|
| | |
|
| | | public UserCustomSettingsException() {
|
| | | super();
|
| | | }
|
| | | }
|
| | |
| | | package com.yeshi.fanli.exception.user; |
| | | |
| | | public class UserExtraTaoBaoInfoException extends Exception { |
| | | /** |
| | | * |
| | | */ |
| | | private static final long serialVersionUID = 1L; |
| | | private int code; |
| | | private String msg; |
| | | |
| | | public int getCode() { |
| | | return code; |
| | | } |
| | | |
| | | public String getMsg() { |
| | | return msg; |
| | | } |
| | | |
| | | public UserExtraTaoBaoInfoException(int code, String msg) { |
| | | this.code = code; |
| | | this.msg = msg; |
| | | } |
| | | |
| | | public UserExtraTaoBaoInfoException() { |
| | | } |
| | | |
| | | @Override |
| | | public String getMessage() { |
| | | return this.msg; |
| | | } |
| | | |
| | | } |
| | | package com.yeshi.fanli.exception.user;
|
| | |
|
| | | import com.yeshi.fanli.exception.BaseException;
|
| | |
|
| | | public class UserExtraTaoBaoInfoException extends BaseException {
|
| | | |
| | | private static final long serialVersionUID = 1L;
|
| | | |
| | | public UserExtraTaoBaoInfoException(int code, String msg) {
|
| | | super(code, msg);
|
| | | }
|
| | |
|
| | | public UserExtraTaoBaoInfoException() {
|
| | | super();
|
| | | }
|
| | | }
|
| | |
| | | package com.yeshi.fanli.exception.user; |
| | | |
| | | public class UserGoodsStorageException extends Exception { |
| | | /** |
| | | * |
| | | */ |
| | | private static final long serialVersionUID = 1L; |
| | | private int code; |
| | | private String msg; |
| | | |
| | | public int getCode() { |
| | | return code; |
| | | } |
| | | |
| | | public String getMsg() { |
| | | return msg; |
| | | } |
| | | |
| | | public UserGoodsStorageException(int code, String msg) { |
| | | this.code = code; |
| | | this.msg = msg; |
| | | } |
| | | |
| | | public UserGoodsStorageException() { |
| | | } |
| | | |
| | | @Override |
| | | public String getMessage() { |
| | | return this.msg; |
| | | } |
| | | |
| | | } |
| | | package com.yeshi.fanli.exception.user;
|
| | |
|
| | | import com.yeshi.fanli.exception.BaseException;
|
| | |
|
| | | public class UserGoodsStorageException extends BaseException {
|
| | | |
| | | private static final long serialVersionUID = 1L;
|
| | | |
| | | public UserGoodsStorageException(int code, String msg) {
|
| | | super(code, msg);
|
| | | }
|
| | |
|
| | | public UserGoodsStorageException() {
|
| | | super();
|
| | | }
|
| | | }
|
| | |
| | | package com.yeshi.fanli.exception.user; |
| | | |
| | | public class UserInfoException extends Exception { |
| | | /** |
| | | * |
| | | */ |
| | | private static final long serialVersionUID = 1L; |
| | | private int code; |
| | | private String msg; |
| | | |
| | | public int getCode() { |
| | | return code; |
| | | } |
| | | |
| | | public String getMsg() { |
| | | return msg; |
| | | } |
| | | |
| | | public UserInfoException(int code, String msg) { |
| | | this.code = code; |
| | | this.msg = msg; |
| | | } |
| | | |
| | | public UserInfoException() { |
| | | } |
| | | |
| | | @Override |
| | | public String getMessage() { |
| | | return this.msg; |
| | | } |
| | | |
| | | } |
| | | package com.yeshi.fanli.exception.user;
|
| | |
|
| | | import com.yeshi.fanli.exception.BaseException;
|
| | |
|
| | | public class UserInfoException extends BaseException {
|
| | | |
| | | private static final long serialVersionUID = 1L;
|
| | | |
| | | public UserInfoException(int code, String msg) {
|
| | | super(code, msg);
|
| | | }
|
| | |
|
| | | public UserInfoException() {
|
| | | super();
|
| | | }
|
| | | }
|
| | |
| | | package com.yeshi.fanli.exception.user; |
| | | |
| | | public class UserInfoExtraException extends Exception { |
| | | /** |
| | | * |
| | | */ |
| | | private static final long serialVersionUID = 1L; |
| | | private int code; |
| | | private String msg; |
| | | |
| | | public int getCode() { |
| | | return code; |
| | | } |
| | | |
| | | public String getMsg() { |
| | | return msg; |
| | | } |
| | | |
| | | public UserInfoExtraException(int code, String msg) { |
| | | this.code = code; |
| | | this.msg = msg; |
| | | } |
| | | |
| | | public UserInfoExtraException() { |
| | | } |
| | | |
| | | @Override |
| | | public String getMessage() { |
| | | return this.msg; |
| | | } |
| | | |
| | | } |
| | | package com.yeshi.fanli.exception.user;
|
| | |
|
| | | import com.yeshi.fanli.exception.BaseException;
|
| | |
|
| | | public class UserInfoExtraException extends BaseException {
|
| | | |
| | | private static final long serialVersionUID = 1L;
|
| | | |
| | | public UserInfoExtraException(int code, String msg) {
|
| | | super(code, msg);
|
| | | }
|
| | |
|
| | | public UserInfoExtraException() {
|
| | | super();
|
| | | }
|
| | | }
|
| | |
| | | package com.yeshi.fanli.exception.user; |
| | | |
| | | public class UserLotteryRecordException extends Exception { |
| | | /** |
| | | * |
| | | */ |
| | | private static final long serialVersionUID = 1L; |
| | | private int code; |
| | | private String msg; |
| | | |
| | | public int getCode() { |
| | | return code; |
| | | } |
| | | |
| | | public String getMsg() { |
| | | return msg; |
| | | } |
| | | |
| | | public UserLotteryRecordException(int code, String msg) { |
| | | this.code = code; |
| | | this.msg = msg; |
| | | } |
| | | |
| | | public UserLotteryRecordException() { |
| | | } |
| | | |
| | | @Override |
| | | public String getMessage() { |
| | | return this.msg; |
| | | } |
| | | |
| | | } |
| | | package com.yeshi.fanli.exception.user;
|
| | |
|
| | | import com.yeshi.fanli.exception.BaseException;
|
| | |
|
| | | public class UserLotteryRecordException extends BaseException {
|
| | | |
| | | private static final long serialVersionUID = 1L;
|
| | | |
| | | public UserLotteryRecordException(int code, String msg) {
|
| | | super(code, msg);
|
| | | }
|
| | |
|
| | | public UserLotteryRecordException() {
|
| | | super();
|
| | | }
|
| | | }
|
| | |
| | | package com.yeshi.fanli.exception.user; |
| | | |
| | | public class UserSystemCouponException extends Exception { |
| | | /** |
| | | * |
| | | */ |
| | | private static final long serialVersionUID = 1L; |
| | | private int code; |
| | | private String msg; |
| | | |
| | | public int getCode() { |
| | | return code; |
| | | } |
| | | |
| | | public String getMsg() { |
| | | return msg; |
| | | } |
| | | |
| | | public UserSystemCouponException(int code, String msg) { |
| | | this.code = code; |
| | | this.msg = msg; |
| | | } |
| | | |
| | | public UserSystemCouponException() { |
| | | } |
| | | |
| | | @Override |
| | | public String getMessage() { |
| | | return this.msg; |
| | | } |
| | | |
| | | } |
| | | package com.yeshi.fanli.exception.user;
|
| | |
|
| | | import com.yeshi.fanli.exception.BaseException;
|
| | |
|
| | | public class UserSystemCouponException extends BaseException {
|
| | | |
| | | private static final long serialVersionUID = 1L;
|
| | | |
| | | public UserSystemCouponException(int code, String msg) {
|
| | | super(code, msg);
|
| | | }
|
| | |
|
| | | public UserSystemCouponException() {
|
| | | super();
|
| | | }
|
| | | }
|
| | |
| | | <select id="getByWorkerId" resultMap="BaseResultMap" parameterType="java.lang.Long"> |
| | | select <include refid="Base_Column_List" /> from yeshi_ec_threeSale |
| | | where worker_id = #{0} AND state=0 AND (expire = 0 OR expire IS NULL) |
| | | ORDER BY createTime DESC |
| | | LIMIT 1 |
| | | </select> |
| | | |
| | | |