1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- package com.ruoyi.system.domain;
- import org.apache.commons.lang3.builder.ToStringBuilder;
- import org.apache.commons.lang3.builder.ToStringStyle;
- import com.ruoyi.common.annotation.Excel;
- import com.ruoyi.common.core.domain.BaseEntity;
- /**
- * 学院对象 stu_college
- *
- * @author liql
- * @date 2021-03-23
- */
- public class StuCollege extends BaseEntity
- {
- private static final long serialVersionUID = 1L;
- /** 主键id */
- private Long id;
- /** 院校名称 */
- @Excel(name = "院校名称")
- private String collegeName;
- public void setId(Long id)
- {
- this.id = id;
- }
- public Long getId()
- {
- return id;
- }
- public void setCollegeName(String collegeName)
- {
- this.collegeName = collegeName;
- }
- public String getCollegeName()
- {
- return collegeName;
- }
- @Override
- public String toString() {
- return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
- .append("id", getId())
- .append("collegeName", getCollegeName())
- .append("remark", getRemark())
- .append("createBy", getCreateBy())
- .append("createTime", getCreateTime())
- .append("updateBy", getUpdateBy())
- .append("updateTime", getUpdateTime())
- .toString();
- }
- }
|