You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
66 lines
1.3 KiB
Java
66 lines
1.3 KiB
Java
|
1 year ago
|
package com.sztzjy.linkCommerce.entity;
|
||
|
|
|
||
|
|
import io.swagger.annotations.ApiModelProperty;
|
||
|
|
|
||
|
|
import java.util.Date;
|
||
|
|
/**
|
||
|
|
*
|
||
|
|
* @author whb
|
||
|
|
* stu_table_name
|
||
|
|
*/
|
||
|
|
public class StuTableName {
|
||
|
|
@ApiModelProperty("ID")
|
||
|
|
private Integer id;
|
||
|
|
|
||
|
|
@ApiModelProperty("用户ID")
|
||
|
|
private String userId;
|
||
|
|
|
||
|
|
@ApiModelProperty("表格名")
|
||
|
|
private String tableName;
|
||
|
|
|
||
|
|
@ApiModelProperty("创建时间")
|
||
|
|
private Date createTime;
|
||
|
|
|
||
|
|
@ApiModelProperty("更新时间")
|
||
|
|
private Date updateTime;
|
||
|
|
|
||
|
|
public Integer getId() {
|
||
|
|
return id;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setId(Integer id) {
|
||
|
|
this.id = id;
|
||
|
|
}
|
||
|
|
|
||
|
|
public String getUserId() {
|
||
|
|
return userId;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setUserId(String userId) {
|
||
|
|
this.userId = userId == null ? null : userId.trim();
|
||
|
|
}
|
||
|
|
|
||
|
|
public String getTableName() {
|
||
|
|
return tableName;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setTableName(String tableName) {
|
||
|
|
this.tableName = tableName == null ? null : tableName.trim();
|
||
|
|
}
|
||
|
|
|
||
|
|
public Date getCreateTime() {
|
||
|
|
return createTime;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setCreateTime(Date createTime) {
|
||
|
|
this.createTime = createTime;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Date getUpdateTime() {
|
||
|
|
return updateTime;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setUpdateTime(Date updateTime) {
|
||
|
|
this.updateTime = updateTime;
|
||
|
|
}
|
||
|
|
}
|