|
|
@ -169,7 +169,7 @@ public class CollectModel {
|
|
|
|
* @param job_id
|
|
|
|
* @param job_id
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
public List<Record> getSheets(int job_id) {
|
|
|
|
public List<Record> getSheets(int job_id) {
|
|
|
|
String sql = "select * from t_collect_job_sheet where job_id=? order by sheet_index";
|
|
|
|
String sql = "select *,(sheet_index+1) as number from t_collect_job_sheet where job_id=? order by sheet_index";
|
|
|
|
return Db.find(sql, job_id);
|
|
|
|
return Db.find(sql, job_id);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|