| | |
| | | @GeneratedValue(strategy = GenerationType.IDENTITY) |
| | | private Long id; |
| | | private String name; |
| | | private String code; |
| | | private String manager; |
| | | private String tel; |
| | | private String email; |
| | |
| | | |
| | | public IssueHosting(){} |
| | | |
| | | public IssueHosting(Issue issue, HostingField hostingField, String name, String manager, String tel, String email, String memo){ |
| | | public IssueHosting(Issue issue, HostingField hostingField, String name, String code, String manager, String tel, String email, String memo){ |
| | | this.issue = issue; |
| | | this.hostingField = hostingField; |
| | | 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; |
| | | } |