Nylog.java 1.45 KB
package com.bsth.entity.oil;

import java.util.Date;

import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.Id;
import javax.persistence.Table;

@Entity
@Table(name = "bsth_c_nylog")
public class Nylog {
	@Id
	@GeneratedValue
	private Integer id;
	
	private String nylx;
	
	private String czmc;
	
	private String userid;
	
	private String username;
	
	private Date createdate; 
	
	private String cxtj;
	
	private String fwdz;

	public Integer getId() {
		return id;
	}

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

	public String getNylx() {
		return nylx;
	}

	public void setNylx(String nylx) {
		this.nylx = nylx;
	}

	public String getCzmc() {
		return czmc;
	}

	public void setCzmc(String czmc) {
		this.czmc = czmc;
	}

	public String getUserid() {
		return userid;
	}

	public void setUserid(String userid) {
		this.userid = userid;
	}

	public String getUsername() {
		return username;
	}

	public void setUsername(String username) {
		this.username = username;
	}

	public Date getCreatedate() {
		return createdate;
	}

	public void setCreatedate(Date createdate) {
		this.createdate = createdate;
	}

	public String getCxtj() {
		return cxtj;
	}

	public void setCxtj(String cxtj) {
		this.cxtj = cxtj;
	}

	public String getFwdz() {
		return fwdz;
	}

	public void setFwdz(String fwdz) {
		this.fwdz = fwdz;
	}

	
	
}