null 496 B

12345678910111213141516171819
  1. ava
  2. package org.spring.ai.config.server.controller.entity.req;
  3. import org.spring.ai.config.biz.crud.entity.PromoteSpeech;
  4. import java.util.List;
  5. public class SavePromoteSpeechReq {
  6. private List<PromoteSpeech> promoteSpeechList;
  7. // Getter and Setter
  8. public List<PromoteSpeech> getPromoteSpeechList() {
  9. return promoteSpeechList;
  10. }
  11. public void setPromoteSpeechList(List<PromoteSpeech> promoteSpeechList) {
  12. this.promoteSpeechList = promoteSpeechList;
  13. }
  14. }