All Downloads are FREE. Search and download functionalities are using the official Maven repository.

test.entity.Student Maven / Gradle / Ivy

Go to download

This is a lightweight complete ORM framework, which encapsulates a large number of commonly used SQL and implements multi-table Association query and paging query.

There is a newer version: 2.2.2
Show newest version
package test.entity ;

import java.sql.Timestamp;

import org.jleopard.core.EnumPrimary;
import org.jleopard.core.annotation.Column;
import org.jleopard.core.annotation.Table;




/**
 *
 * @Copyright  (c) by Chen_9g ([email protected]).
 * @Author  Leopard Generator
 * @DateTime  2018-04-18 08:50:20
 */
@Table("student")
public class Student {

	@Column(value="ID",isPrimary = EnumPrimary.YES)
	private Integer id;
	@Column("NAME")
	private String name;
	@Column("CREATED")
	private Timestamp created;

	public Student() {
	}
	
	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;
	}
	
	public Timestamp getCreated() {
		return created;
	}

	public void setCreated(Timestamp created) {
		this.created = created;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy