12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- package com.cloudcross.ssp.model;
- import com.cloudcross.ssp.web.widget.SelectorController.ISelector;
- /**
- * 云联定义的领数场景的表信息,对应数据库的t_place_class_info
- * @author chenyou
- *
- */
- public class PlaceClassInformation 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 toString() {
- return "PlaceClassInformation [id=" + id + ", name=" + name + "]";
- }
- @Override
- public String getLabel() {
- return this.name;
- }
- @Override
- public String getValue() {
- return String.valueOf(this.id);
- }
-
-
-
- }
|