Purchase.java 3.04 KB
/*
 * Copyright (c) 2015 www.diligrp.com All rights reserved.
 * 本软件源代码版权归----所有,未经许可不得任意复制与传播.
 */
package com.dili.titan.domain.gq;

import java.util.Date;

/**
 * purchase
 * @author dev-center
 * @since 2015-07-24
 */
public class Purchase  {
    private Long id;
    private String title;
    private String userName;
	private Long categoryId;
    private Long producingAreaId;
	private Long localityAreaId;
	private Integer count;
	private Integer unitId;
	private String phone;
	private Date expireTime;
	private Integer status;
	private Long userId;
	private Integer source;
	private String reason;
	private Date ctime;
	private String utime;

	public Purchase(){
		//默认无参构造方法
	}

    public Long getId() {
        return id;
    }

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

    public String getTitle() {
        return title;
    }

    public void setTitle(String title) {
        this.title = title;
    }

    public String getUserName() {
        return userName;
    }

    public void setUserName(String userName) {
        this.userName = userName;
    }

    public Long getCategoryId() {
        return categoryId;
    }

    public void setCategoryId(Long categoryId) {
        this.categoryId = categoryId;
    }

    public Long getLocalityAreaId() {
        return localityAreaId;
    }

    public void setLocalityAreaId(Long localityAreaId) {
        this.localityAreaId = localityAreaId;
    }

    public Integer getCount() {
        return count;
    }

    public void setCount(Integer count) {
        this.count = count;
    }

    public Integer getUnitId() {
        return unitId;
    }

    public void setUnitId(Integer unitId) {
        this.unitId = unitId;
    }

    public String getPhone() {
        return phone;
    }

    public void setPhone(String phone) {
        this.phone = phone;
    }

    public Date getExpireTime() {
        return expireTime;
    }

    public void setExpireTime(Date expireTime) {
        this.expireTime = expireTime;
    }

    public Integer getStatus() {
        return status;
    }

    public void setStatus(Integer status) {
        this.status = status;
    }

    public Long getUserId() {
        return userId;
    }

    public void setUserId(Long userId) {
        this.userId = userId;
    }

    public Integer getSource() {
        return source;
    }

    public void setSource(Integer source) {
        this.source = source;
    }

    public String getReason() {
        return reason;
    }

    public void setReason(String reason) {
        this.reason = reason;
    }

    public Date getCtime() {
        return ctime;
    }

    public void setCtime(Date ctime) {
        this.ctime = ctime;
    }

    public String getUtime() {
        return utime;
    }

    public void setUtime(String utime) {
        this.utime = utime;
    }

    public Long getProducingAreaId() {
        return producingAreaId;
    }

    public void setProducingAreaId(Long producingAreaId) {
        this.producingAreaId = producingAreaId;
    }
}