package doumeemes.core.constants; /** * 操作类型 * @author Eva.Caesar Liu * @date 2022/04/18 18:12 */ public interface OperaType { /** * 创建 * @author Eva.Caesar Liu * @date 2022/04/18 18:12 */ interface Create {} /** * 修改 * @author Eva.Caesar Liu * @date 2022/04/18 18:12 */ interface Update {} /** * 修改状态 * @author Eva.Caesar Liu * @date 2022/04/18 18:12 */ interface UpdateStatus {} }