4
5
6
7
8
9
10
11
12
fn main() {
let path = format!("{}/examples/file/demossssttt.xlsx", env!("CARGO_MANIFEST_DIR"));
let heads = vec![
Head::new("order_no", "订单", "", 0),
Head::new("code", "编号", "", 0),
Head::new("name", "名称", "", 0),
];
Read::export(path.as_str(), 0, heads);
}