Code.java 135 B

1234567
  1. package com.template.common.result;
  2. public interface Code {
  3. Integer getStatus();
  4. Boolean getSuccess();
  5. String getMsg();
  6. }