Commit 3c3b435e by huangZW

111

parent ba0517f3
......@@ -8,27 +8,27 @@ package com.gic.haoban.manage.api.enums;
public enum StoreFieldEnum {
//门店名称
STORE_NAME(1),
STORE_NAME("1"),
//门店面积
STORE_AREA(2),
STORE_AREA("2"),
//联系电话
CONACTS_PHONE(3),
CONACTS_PHONE("3"),
//营业时间
BUSINESS_TIME_STRING(4),
BUSINESS_TIME_STRING("4"),
//门店地址
STORE_ADDRESS(5),
STORE_ADDRESS("5"),
//门店图片
STORE_IMAG(6);
STORE_IMAG("6");
/**
* 类型
*/
private Integer value;
private String value;
StoreFieldEnum(Integer value) {
StoreFieldEnum(String value) {
this.value = value;
}
public Integer getValue() {
public String getValue() {
return 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