| 12345678910111213141516171819 |
- ava
- package org.spring.ai.config.server.controller.entity.req;
- import org.spring.ai.config.biz.crud.entity.PromoteSpeech;
- import java.util.List;
- public class SavePromoteSpeechReq {
- private List<PromoteSpeech> promoteSpeechList;
- // Getter and Setter
- public List<PromoteSpeech> getPromoteSpeechList() {
- return promoteSpeechList;
- }
- public void setPromoteSpeechList(List<PromoteSpeech> promoteSpeechList) {
- this.promoteSpeechList = promoteSpeechList;
- }
- }
|