You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
525 B

package com.stone.model.po.template;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import javax.persistence.*;
import java.io.Serializable;
/**
* 模板
* @author zichen
*/
@Data
@Table(name = "flow_template")
public class Template implements Serializable {
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
@ApiModelProperty(value = "主键")
private Integer id;
@Column(name = "temp_name")
@ApiModelProperty(value = "模板名称")
private String tempName;
}