Skip to content
  • This project
    • Loading...
  • Sign in

sunchenjie / ImportSpeechPhaseByExcel

Go to a project
Toggle navigation
Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • ImportSpeechPhaseByExcel
  • src
  • main
  • java
  • com
  • phase
  • SpeechPhaseDTO.java
  • sunchenjie's avatar
    create:创建git库 · a65a31ce
    sunchenjie committed 2020-07-20 14:44:03 +0800
    a65a31ce
SpeechPhaseDTO.java 356 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
package com.phase;

import lombok.*;

import java.util.List;


/**
 * 话术编辑
 *
 * @author sunchenjie <sunchenjie@situdata.com> 2020/03/31
 **/
@Setter
@Getter
@NoArgsConstructor
@AllArgsConstructor
@Builder
public class SpeechPhaseDTO {

    private Long stlId;

    private String speechName;

    private List<SpeechBigPhaseEditDTO> phaseList;

}