|
|
|
@ -455,9 +455,9 @@ public class BlockReportEnumUtil {
|
|
|
|
|
@JsonFormat(shape = JsonFormat.Shape.OBJECT)
|
|
|
|
|
public enum TEMPLATE_STYLE {
|
|
|
|
|
|
|
|
|
|
TABLE_LEFT(1, TEMPLATE_TYPE.TABLE, "text-left", "表单左对齐"),
|
|
|
|
|
TABLE_RIGHT(2, TEMPLATE_TYPE.TABLE, "text-center", "表单右对齐"),
|
|
|
|
|
TABLE_CENTER(3, TEMPLATE_TYPE.TABLE, "text-right", "表单居中");
|
|
|
|
|
TABLE_LEFT(1, TEMPLATE_TYPE.TABLE, "text-align: left!important;", "表单左对齐"),
|
|
|
|
|
TABLE_RIGHT(2, TEMPLATE_TYPE.TABLE, "text-align: right!important;", "表单右对齐"),
|
|
|
|
|
TABLE_CENTER(3, TEMPLATE_TYPE.TABLE, "text-align: center!important;", "表单居中");
|
|
|
|
|
|
|
|
|
|
private int value;
|
|
|
|
|
private TEMPLATE_TYPE group;
|
|
|
|
|