| | |
| | | @GeneratedValue(strategy = GenerationType.IDENTITY) |
| | | private Long id; |
| | | private String name; |
| | | private String code; |
| | | private String manager; |
| | | private String tel; |
| | | private String email; |
| | |
| | | |
| | | public IssueIsp(){} |
| | | |
| | | public IssueIsp(Issue issue, IspField ispField, String name, String manager, String tel, String email, String memo){ |
| | | public IssueIsp(Issue issue, IspField ispField, String name, String code, String manager, String tel, String email, String memo){ |
| | | this.issue = issue; |
| | | this.ispField = ispField; |
| | | this.name = name; |
| | | this.code = code; |
| | | this.manager = manager; |
| | | this.tel = tel; |
| | | this.email = email; |
| | |
| | | this.name = name; |
| | | } |
| | | |
| | | public String getCode() { |
| | | return code; |
| | | } |
| | | |
| | | public void setCode(String code) { |
| | | this.code = code; |
| | | } |
| | | |
| | | public String getManager() { |
| | | return manager; |
| | | } |