package com.changhong.autoform.constant.system; public interface ErrCode { /** * 成功 */ String SUCCESS = "0000"; /** * 数据连接错误 */ String CONNECT_ERR = "0001"; /** * 执行sql错误 */ String EXECUTE_ERR = "0002"; }