package cn.com.basic.face.discern.user.entity;
|
|
import java.io.Serializable;
|
|
/**
|
* @¼ò½é£º
|
* @author dpy
|
* @ÄÚÈÝ˵Ã÷£º
|
* @°æ±¾£º
|
*
|
*/
|
public class Company implements Serializable{
|
/**
|
*
|
*/
|
private static final long serialVersionUID = 1L;
|
|
private Integer id;
|
|
private String name;
|
|
public Integer getId() {
|
return id;
|
}
|
|
public void setId(Integer id) {
|
this.id = id;
|
}
|
|
public String getName() {
|
return name;
|
}
|
|
public void setName(String name) {
|
this.name = name == null ? null : name.trim();
|
}
|
}
|