|
|
|
@ -11,6 +11,7 @@ import org.hibernate.annotations.DynamicInsert;
|
|
|
|
|
import org.hibernate.annotations.DynamicUpdate;
|
|
|
|
|
|
|
|
|
|
import javax.persistence.*;
|
|
|
|
|
import java.io.Serializable;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @Description : 打印模板参数
|
|
|
|
@ -26,9 +27,9 @@ import javax.persistence.*;
|
|
|
|
|
@EqualsAndHashCode(callSuper = true)
|
|
|
|
|
@Table(name = "MES_LABEL_TEMPLATE_PARAM")
|
|
|
|
|
@Api(value = "打印模板参数", description = "打印模板参数")
|
|
|
|
|
public class MesLabelTemplateParam extends BaseBean {
|
|
|
|
|
public class MesLabelTemplateParam extends BaseBean implements Serializable {
|
|
|
|
|
|
|
|
|
|
private static final long serialVersionUID = 6476163540527157643L;
|
|
|
|
|
private static final long serialVersionUID = -3595706874099358555L;
|
|
|
|
|
@Column(name = "TEMPLATE_ID")
|
|
|
|
|
@ApiParam(value = "模板ID", access = "模板ID", example = "-1")
|
|
|
|
|
@JsonSerialize(using = ToStringSerializer.class)
|
|
|
|
|