Commit 4e451562 by gaopeng

客户端来源参数及代码结构重新设计

parent 8e56b357
package com.pcloud.common.core.enums;
/**
* Description Cookie中sourceType枚举类
* @author PENG
* @date 2018/5/10
*/
public enum SourceTypeEnum {
/**
* 扫码带入的二维码ID
*/
QRCODE("QRCODE");
/**
* 值
*/
public final String value;
/**
* 构造
* @param value
*/
SourceTypeEnum(String value) {
this.value = value;
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment