package com.casic.missiles.enums; /** * @Description: 当前检定环节类型枚举 * @Author: wangpeng * @Date: 2023/02/08 15:51 */ public interface CurrentSegmentEnum { String TO_ALLOCATE = "待分配"; String TO_INCOME = "待收入"; String COMPLETE = "完成"; }