Blame view

src/main/java/com/daeucna/board/domain/BoardForm.java 976 Bytes
a6468920   sangkiham   Spring Boot Board...
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
  package com.daeucna.board.domain;

   

  import java.util.Date;

  import java.util.List;

  

  import org.springframework.web.multipart.MultipartFile;

  

  import io.swagger.annotations.ApiModel;

  import lombok.Getter;

  import lombok.Setter;

  import lombok.ToString;

   

  @ApiModel(value = "게시글 정보 : Board", description = "게시글 정보")

  @Getter @Setter @ToString

  public class BoardForm extends CommonForm {

   

      List<MultipartFile> files;

      int board_seq;

      String board_kind;

      int board_parent_seq;

      int board_re_ref;

      int board_re_lev;

      int board_re_seq;

      String board_writer;

      String board_subject;

      String board_content;

      int board_hits;

      String proc_status;

      String proc_desc;

      String proc_date;

      String proc_user;

      String del_yn;

      String ins_user_id;

      Date ins_date;

      String upd_user_id;

      Date upd_date;

      String search_type;

      String board_file;

      String delete_file;

   

  }