Commit dc306930 by 王力

Merge branch 'dev_businessblock0801' into 'develop'

Dev businessblock0801

See merge request !317
2 parents d0f2a375 bd7af924
......@@ -9,6 +9,7 @@ import java.util.List;
public interface OrderInfoDao extends JpaRepository<OrderInfoEntity, Long> {
OrderInfoEntity getByOrderId(String orderId);
OrderInfoEntity getByOrderIdAndDt(String orderId, LocalDate dt);
List<OrderInfoEntity> findByOrderId(String orderId);
......
......@@ -181,9 +181,11 @@ public class BusinessBlockServiceImpl implements BusinessBlockService {
}
String blockId = saasResult.getResult();
String blockName = String.format("%s_%s", layerName, team.getTeamName()); //区块名称
MapBlockInfo block = new MapBlockInfo();
block.setBlockId(blockId);
block.setBlockName(team.getTeamName()); //默认使用team name;
block.setBlockName(blockName);
block.setBranchId(team.getBranchId());
block.setGroupId(team.getGroupId());
block.setTeamId(teamId);
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!