InitPaper.java 241 B

123456789101112
  1. package com.qxgmat.service.annotation;
  2. import com.qxgmat.data.dao.entity.UserPaper;
  3. /**
  4. * Created by gaojie on 2017/11/20.
  5. */
  6. @FunctionalInterface
  7. public interface InitPaper {
  8. void callback(UserPaper userPaper, Integer originId);
  9. }