package com.cdzy.staff.enums; /** * @author attiya * @since 2025-09-09 */ public interface StaffStatus { int ENABLE = 1; int DISABLE = 2; }