123456789101112131415161718192021222324252627282930313233343536373839 |
- package com.cloudcross.ssp.advertiser.model;
- import com.cloudcross.ssp.web.widget.SelectorController.ISelector;
- public class Industry implements ISelector{
-
- private Long id;
-
- private String name;
-
- public Long getId() {
- return id;
- }
- public void setId(Long id) {
- this.id = id;
- }
- public String getName() {
- return name;
- }
- public void setName(String name) {
- this.name = name;
- }
- @Override
- public String getLabel() {
- // TODO Auto-generated method stub
- return this.name;
- }
- @Override
- public String getValue() {
- // TODO Auto-generated method stub
- return String.valueOf(this.id);
- }
-
- }
|