| | |
| | | import org.springframework.validation.annotation.Validated; |
| | | import org.springframework.web.bind.annotation.PostMapping; |
| | | import org.springframework.web.bind.annotation.RequestBody; |
| | | import org.springframework.web.bind.annotation.RequestMapping; |
| | | import org.springframework.web.bind.annotation.RequestParam; |
| | | import org.springframework.web.bind.annotation.RestController; |
| | | |
| | |
| | | |
| | | @Api(tags = {"小程序-党员管理"}) |
| | | @Validated |
| | | @RestController("/applet/party-member") |
| | | @RestController |
| | | @RequestMapping("/applet/party-member") |
| | | @RequiredArgsConstructor(onConstructor_ = {@Lazy}) |
| | | public class PartyMemberController extends BaseController { |
| | | private final IPartyMemberService partyMemberService; |