IGetStaffAppAuthBMO.java 375 B

1234567891011121314151617181920
  1. package com.java110.user.bmo.staffAppAuth;
  2. import com.java110.dto.staffAppAuth.StaffAppAuthDto;
  3. import org.springframework.http.ResponseEntity;
  4. public interface IGetStaffAppAuthBMO {
  5. /**
  6. * 查询员工微信认证
  7. * add by wuxw
  8. *
  9. * @param staffAppAuthDto
  10. * @return
  11. */
  12. ResponseEntity<String> get(StaffAppAuthDto staffAppAuthDto);
  13. }