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

com.tlgen.orm.model.PrimaryParams Maven / Gradle / Ivy

The newest version!
package com.tlgen.orm.model;

/**
 * 主键字段信息
 */
public class PrimaryParams {

    // 对应数据库中的属性名
    private String name;

    // 属性值
    private String value;

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public String getValue() {
        return value;
    }

    public void setValue(String value) {
        this.value = value;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy