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

com.bixuebihui.test.pojo.TEdu Maven / Gradle / Ivy

There is a newer version: 1.15.9
Show newest version
package com.bixuebihui.test.pojo;

/*
 *  TEdu
 *
 * Notice! Automatically generated file!
 * Do not edit the pojo and dal packages,use `maven tablegen:gen`!
 * Code Generator originally by J.A.Carter
 * Modified by Xing Wanxiang 2008-2021
 * email: [email protected]
 */


import java.sql.*;
import java.time.*;
import java.io.Serializable;
import jakarta.validation.constraints.*;
import org.apache.commons.text.StringEscapeUtils;


import io.swagger.v3.oas.annotations.media.Schema;

import javax.annotation.processing.Generated;

@Generated("com.github.yujiaao:tablegen")
@Schema(description ="教育程度")
public class TEdu  implements Serializable {


    
    /**
    * id
    */
    @Schema(title = "这里是id!")
    protected Integer  id;

    
    /**
    * degree
    */
    @Size(max=100)
@Schema(title = "这里是名称!")
    protected String  degree;




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

    public void setDegree(String degree)
    {
      this.degree = degree;
    }
    public String getDegree()
    {
      return this.degree;
    }


    
    public TEdu()
    {
     
            id=0;
             
            degree="";
            
    }

    public String toXml()
    {
        StringBuilder s= new StringBuilder();
        String ln = System.getProperty("line.separator");
        s.append("");
        s.append(ln);
        return s.toString();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy