CusDeclare.java 209 B

1234567891011121314151617
  1. package com.emato.cuspay.wx.declare;
  2. /**
  3. * 海关申报接口
  4. * @author zx
  5. * @version 1.0
  6. * 2018-05-18 11:01
  7. */
  8. public interface CusDeclare {
  9. /**
  10. * 海关报关
  11. */
  12. void declare();
  13. }