/** * Copyright (c) 2020 ucsmy.com, All rights reserved. */ package com.ruoyi.project.enumerate; import lombok.Getter; /** * @Description: 评价方法枚举 * @Author: Administrator * @Created Date: 2020年05月10日 * @LastModifyDate: * @LastModifyBy: * @Version: */ @Getter public enum TrEvaluationMethodTypeEnum { LS(1, "ByLS"), LEC(2, "ByLEC"), MES(3, "ByMES"), RS(4, "ByRS"), ; private Integer methodId; private String url; TrEvaluationMethodTypeEnum(Integer methodId,String url) { this.url = url; this.methodId = methodId; } }