package com.hz.phis.dt.limit;
|
|
import lombok.Data;
|
|
/**
|
* 其他限制
|
* @author fwq
|
*/
|
|
@Data
|
public class LimitOtherDt {
|
/**限制标识*/
|
private String id;
|
/**公共标识(星座/门店/其他)*/
|
private String commonId;
|
/**公共名称*/
|
private String commonName;
|
/**类型*/
|
private Integer type;
|
/**限制总标识*/
|
private String limitTotalId;
|
|
/**星座*/
|
public static final Integer TYPE_STAR = 0;
|
/**门店*/
|
public static final Integer TYPE_SHOP = 1;
|
/**渠道*/
|
public static final Integer TYPE_CHANNEL = 2;
|
/**标签*/
|
public static final Integer TYPE_LABEL = 3;
|
/**支付方式*/
|
public static final Integer TYPE_PAY_METHOD = 4;
|
}
|