Search before asking
Motivation
List<A> records = new ArrayList<>();
FastExcel.write(excelFileName).withTemplate(is).sheet().doFill(records);
@Getter
@Setter
public class A {
private B b;
}
@Getter
@Setter
public class B {
private String c;
}
希望通过占位符{.b.c}能够填充b对象的属性c的值
Solution
No response
Alternatives
No response
Anything else?
No response
Are you willing to submit a PR?
Search before asking
Motivation
希望通过占位符{.b.c}能够填充b对象的属性c的值
Solution
No response
Alternatives
No response
Anything else?
No response
Are you willing to submit a PR?