|
|
@@ -0,0 +1,109 @@ |
|
|
|
package com.ningdatech.pmapi.organization.entity; |
|
|
|
|
|
|
|
import com.baomidou.mybatisplus.annotation.TableName; |
|
|
|
import java.io.Serializable; |
|
|
|
import java.time.LocalDateTime; |
|
|
|
import io.swagger.annotations.ApiModel; |
|
|
|
import io.swagger.annotations.ApiModelProperty; |
|
|
|
|
|
|
|
/** |
|
|
|
* <p> |
|
|
|
* |
|
|
|
* </p> |
|
|
|
* |
|
|
|
* @author Liuxinxin |
|
|
|
* @since 2023-03-08 |
|
|
|
*/ |
|
|
|
@TableName("meta_organization_line_tag") |
|
|
|
@ApiModel(value = "MetaOrganizationLineTag对象", description = "") |
|
|
|
public class MetaOrganizationLineTag implements Serializable { |
|
|
|
|
|
|
|
private static final long serialVersionUID = 1L; |
|
|
|
|
|
|
|
private Long id; |
|
|
|
|
|
|
|
private LocalDateTime createOn; |
|
|
|
|
|
|
|
private LocalDateTime updateOn; |
|
|
|
|
|
|
|
private Long createBy; |
|
|
|
|
|
|
|
private Long updateBy; |
|
|
|
|
|
|
|
private String lineTagName; |
|
|
|
|
|
|
|
private Long lineTagLevel; |
|
|
|
|
|
|
|
private String lineTagCode; |
|
|
|
|
|
|
|
public Long getId() { |
|
|
|
return id; |
|
|
|
} |
|
|
|
|
|
|
|
public void setId(Long id) { |
|
|
|
this.id = id; |
|
|
|
} |
|
|
|
public LocalDateTime getCreateOn() { |
|
|
|
return createOn; |
|
|
|
} |
|
|
|
|
|
|
|
public void setCreateOn(LocalDateTime createOn) { |
|
|
|
this.createOn = createOn; |
|
|
|
} |
|
|
|
public LocalDateTime getUpdateOn() { |
|
|
|
return updateOn; |
|
|
|
} |
|
|
|
|
|
|
|
public void setUpdateOn(LocalDateTime updateOn) { |
|
|
|
this.updateOn = updateOn; |
|
|
|
} |
|
|
|
public Long getCreateBy() { |
|
|
|
return createBy; |
|
|
|
} |
|
|
|
|
|
|
|
public void setCreateBy(Long createBy) { |
|
|
|
this.createBy = createBy; |
|
|
|
} |
|
|
|
public Long getUpdateBy() { |
|
|
|
return updateBy; |
|
|
|
} |
|
|
|
|
|
|
|
public void setUpdateBy(Long updateBy) { |
|
|
|
this.updateBy = updateBy; |
|
|
|
} |
|
|
|
public String getLineTagName() { |
|
|
|
return lineTagName; |
|
|
|
} |
|
|
|
|
|
|
|
public void setLineTagName(String lineTagName) { |
|
|
|
this.lineTagName = lineTagName; |
|
|
|
} |
|
|
|
public Long getLineTagLevel() { |
|
|
|
return lineTagLevel; |
|
|
|
} |
|
|
|
|
|
|
|
public void setLineTagLevel(Long lineTagLevel) { |
|
|
|
this.lineTagLevel = lineTagLevel; |
|
|
|
} |
|
|
|
public String getLineTagCode() { |
|
|
|
return lineTagCode; |
|
|
|
} |
|
|
|
|
|
|
|
public void setLineTagCode(String lineTagCode) { |
|
|
|
this.lineTagCode = lineTagCode; |
|
|
|
} |
|
|
|
|
|
|
|
@Override |
|
|
|
public String toString() { |
|
|
|
return "MetaOrganizationLineTag{" + |
|
|
|
"id=" + id + |
|
|
|
", createOn=" + createOn + |
|
|
|
", updateOn=" + updateOn + |
|
|
|
", createBy=" + createBy + |
|
|
|
", updateBy=" + updateBy + |
|
|
|
", lineTagName=" + lineTagName + |
|
|
|
", lineTagLevel=" + lineTagLevel + |
|
|
|
", lineTagCode=" + lineTagCode + |
|
|
|
"}"; |
|
|
|
} |
|
|
|
} |