package com.thhy.pm.modules.biz.technology.entity;
|
|
import com.thhy.general.annotations.Idkey;
|
import lombok.Data;
|
import lombok.experimental.Accessors;
|
|
import java.io.Serializable;
|
/**
|
*
|
* @author zhang_xiao_bo
|
* @since 2023-04-25 13:05:22
|
*/
|
@Data
|
@Accessors(chain = true)
|
public class TchFileType implements Serializable {
|
|
|
/**
|
* 主键
|
*/
|
|
@Idkey
|
private String tchFileTypeId;
|
|
|
/**
|
* 技术类型名称
|
*/
|
|
|
private String tchFileTypeName;
|
|
/**
|
* 1Y0N
|
*/
|
|
|
private Integer isUse;
|
|
private String companyId;
|
}
|