package com.gzzm.lobster.common;

public enum PlanItemStatus {
    PENDING,
    IN_PROGRESS,
    COMPLETED,
    SKIPPED,
    FAILED
}
