OutFactory.java
package com.mycim.valueobject.wip;
import com.mycim.valueobject.bas.NamedObject;
import java.io.Serializable;
/**
* @author Aiden
* @version Date:2017年7月5日 上午11:15:40
* @description
*/
// todo 去掉了rowmapper
public class OutFactory extends NamedObject implements Serializable, Cloneable {
private static final long serialVersionUID = 5513828924212918131L;
private String outFactoryId; // 工厂名称
private Long outFactoryRrn; // 工厂rrn
private String address; // 工厂地址
private String username; // 联系人
private String mobile; // 联系电话
private String type; // 类型
private String comments; // 备注
public String getOutFactoryId() {
return outFactoryId;
}
public void setOutFactoryId(String outFactoryId) {
this.outFactoryId = outFactoryId;
}
public Long getOutFactoryRrn() {
return outFactoryRrn;
}
public void setOutFactoryRrn(Long outFactoryRrn) {
this.outFactoryRrn = outFactoryRrn;
}
public String getAddress() {
return address;
}
public void setAddress(String address) {
this.address = address;
}
public String getUsername() {
return username;
}
public void setUsername(String username) {
this.username = username;
}
public String getMobile() {
return mobile;
}
public void setMobile(String mobile) {
this.mobile = mobile;
}
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
public String getComments() {
return comments;
}
public void setComments(String comments) {
this.comments = comments;
}
}