lyh
2026-03-12 e5bd30e774dba285e0e22bbfa5e4e0d936d88e6b
1
2
3
4
5
6
7
8
9
package com.lxzn.framework.model.response;
 
/**
 * 响应类公告接口
 */
public interface Response {
    public static final boolean SUCCESS = true;
    public static final int SUCCESS_CODE = 10000;
}