Files
scrq-hd/.svn/pristine/00/0027fa6223d4d403188218e1699d7f8e1596bcf3.svn-base
2025-07-03 10:34:04 +08:00

73 lines
1.3 KiB
Plaintext

package com.cmeim.basic.po;
import io.swagger.annotations.ApiParam;
import lombok.Data;
import javax.persistence.*;
import java.util.List;
@Data
@Entity
@Table(name = "ba_template")
public class BaTemplate {
/**
* null
*/
@Id
@GeneratedValue(strategy=GenerationType.IDENTITY)
@Column(name = "id")
@ApiParam(value = "null")
private Long id;
/**
* 模板名称
*/
@Column(name = "template_name")
@ApiParam(value = "模板名称")
private String templateName;
/**
* 模板编号
*/
@Column(name = "template_code")
@ApiParam(value = "模板编号")
private String templateCode;
/**
* null
*/
@Column(name = "created_dt")
@ApiParam(value = "null")
private String createdDt;
/**
* null
*/
@Column(name = "created_by")
@ApiParam(value = "null")
private String createdBy;
/**
* 模板大类
*/
@Column(name = "template_category")
@ApiParam(value = "模板大类")
private String templateCategory;
/**
* 模板类型
*/
@Column(name = "template_type")
@ApiParam(value = "模板类型")
private String templateType;
@Transient
@ApiParam(value = "创建时间集合")
private List<String> createdDtList;
@Transient
@ApiParam(value = "更新时间集合")
private List<String> updatedDtList;
}