This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
k18-ntcs-web-ntc/src/main/java/com/nis/domain/configuration/template/BasicTemplate.java

18 lines
282 B
Java
Raw Normal View History

package com.nis.domain.configuration.template;
public class BasicTemplate {
/**
* 数据在excel中的第几行
*/
protected Integer index;
public Integer getIndex() {
return index;
}
public void setIndex(Integer index) {
this.index = index;
}
}