创建包com.atguigu.commonutils,创建接口 ResultCode.java
    image.png

    1. package com.wzy.commonutils;
    2. public interface ResultCode {
    3. public static Integer SUCCESS = 20000;
    4. public static Integer ERROR = 20001;
    5. }