123456789101112131415161718192021222324252627282930313233343536373839404142 |
- package com.simuwang.base.pojo.vo;
- import lombok.Data;
- import java.math.BigDecimal;
- @Data
- public class EmailTemplateDataRuleVO {
- /**
- * 主键Id
- */
- private Integer id;
- /**
- * 模版id(email_template_info.id)
- */
- private Integer templateId;
- /**
- * 字段名称:1-备案编码,2-基金名称,3-净值日期,4-单位净值,5-累计净值,6-资产份额,7-资产净值
- */
- private Integer fieldName;
- /**
- * 提取位置:1-正文,2-正文表格
- */
- private Integer position;
- /**
- * 表格行
- */
- private Integer row;
- /**
- * 表格列
- */
- private String column;
- /**
- * 提取规则
- */
- private String fieldRule;
- /**
- * 单位转换
- */
- private BigDecimal unitConvert;
- }
|