Code.java 133 B

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