首页>代码>fastjson实现json比较>/fastjson/src/com/os4j/model/CreditLine.java
package com.os4j.model;

import java.io.Serializable;
import java.util.List;

public class CreditLine implements Serializable {

  private static final long serialVersionUID = 8149899168474817586L;

  private Long id;
  private Long applicationId; // 申请id
  private Long customerId; // 客户id
  
  private List<AttributeValueDTO> attributeList;
  
  public CreditLine(){}
  
  @Override
  public int hashCode() {
	final int prime = 31;
	int result = 1;
	result = prime * result + ((id == null) ? 0 : id.hashCode());
	return result;
  }

  @Override
  public boolean equals(Object obj) {
	if (this == obj)
		return true;
	if (obj == null)
		return false;
	if (getClass() != obj.getClass())
		return false;
	CreditLine other = (CreditLine) obj;
	if (id == null) {
		if (other.id != null)
			return false;
	} else if (!id.equals(other.id))
		return false;
	return true;
  }

  public Long getId() {
    return id;
  }

  public void setId(Long id) {
    this.id = id;
  }

  public Long getApplicationId() {
    return applicationId;
  }

  public void setApplicationId(Long applicationId) {
    this.applicationId = applicationId;
  }

  
  public Long getCustomerId() {
	return customerId;
  }

  public void setCustomerId(Long customerId) {
	this.customerId = customerId;
  }

  public List<AttributeValueDTO> getAttributeList() {
    return attributeList;
  }

  public void setAttributeList(List<AttributeValueDTO> attributeList) {
    this.attributeList = attributeList;
  }

}
最近下载更多
JinghanHe  LV8 2020年2月24日
ldc199375  LV10 2019年10月31日
kenpfang  LV18 2019年10月7日
走掉的旋律  LV8 2018年7月15日
最近浏览更多
hxhufo008  LV3 2020年9月21日
zdm_ziming  LV1 2020年6月19日
wdeshijie  LV11 2020年6月12日
zdl638  LV6 2020年5月8日
JinghanHe  LV8 2020年2月24日
冰糖l葫芦  LV4 2019年12月27日
弹指又十年  LV8 2019年12月18日
1003480239  LV7 2019年12月11日
幻羽揚  LV4 2019年11月18日
梅西小王子  LV3 2019年11月17日
顶部 客服 微信二维码 底部
>扫描二维码关注最代码为好友扫描二维码关注最代码为好友