feat:发票回传数据处理

This commit is contained in:
苏竹红
2025-01-02 15:40:29 +08:00
parent 154b5d1aaf
commit 85ccaf5dea
3 changed files with 72 additions and 0 deletions

View File

@@ -336,4 +336,14 @@ public class ShopStageInfoDAO {
}
return shopStageInfoMapper.getPlatformBuildStage(shopIds);
}
/**
* 数据处理 查询所有子阶段 通过子阶段对应的阶段状态 做对应的数据处理
* @param shopSubStage
* @return
*/
public List<ShopStageInfoDO> getSubStages(Integer shopSubStage){
return shopStageInfoMapper.getSubStageList(null,shopSubStage);
}
}