/** * item状态状态 * * @author */ export enum SItemStatus { /** 标准状态 */ Normal, /** 编辑状态 */ Edit, /** 创建态 */ Create } // Enum SItemStatus