package com.ruoyi.common.enums; import lombok.Getter; @Getter public enum BillTypeEnum { Zujin(1,"租金"), Yajin(2,"押金"), ShenghuoFee(3,"生活费用"), FangwuYanshou(4,"房屋验收"), ; private Integer code; private String name; BillTypeEnum(Integer code,String name){ this.code = code; this.name = name; } public static BillTypeEnum getByCode(Integer code){ BillTypeEnum[] values = BillTypeEnum.values(); for (BillTypeEnum value : values) { if (value.code==code){ return value; } } return null; } }